~openerp-dev/openobject-client-web/6.0-opw-598313-msh

« back to all changes in this revision

Viewing changes to openerp/commands.py

  • Committer: ame (Tiny/Axelor)
  • Date: 2009-04-20 18:37:57 UTC
  • Revision ID: ame@tinyerp.com-20090420183757-fb6f9253vjybgry3
* Implemented core i18n & l18n api.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
from os.path import join, dirname, exists
9
9
 
10
 
libdir = join(dirname(dirname(os.path.abspath(__file__))), 'lib')
11
 
if os.path.exists(libdir) and libdir not in sys.path:
12
 
    sys.path.insert(0, libdir)
13
 
del libdir
14
 
 
15
10
import cherrypy
16
11
from cherrypy._cpconfig import as_dict
17
12
from formencode import NestedVariables