~openerp-dev/openobject-client-web/trunk-bug-1156592-priyanka

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""Start script for the openerp-web project.

This script is only needed during development for running from the project
directory. When the project is installed, easy_install will create a
proper start script.
"""
import openobject.commands

if __name__ == "__main__":
    openobject.commands.start()

# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: