~openerp-dev/openobject-server/saas-4-forum-crawl-xmo

« back to all changes in this revision

Viewing changes to openerp/modules/module.py

  • Committer: Denis Ledoux
  • Date: 2014-04-24 13:55:07 UTC
  • Revision ID: dle@openerp.com-20140424135507-5130yyy5brpfqd5f
[FIX] http: set back the gen_session_id controller, because still used by openframework.js of web branch

Related to revision 5124 revid:al@openerp.com-20140316141311-m0xqh386ax952va1

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
 
178
178
    if not mod_path:
179
179
        mod_path = get_module_path(module)
180
 
    terp_file = mod_path and opj(mod_path, '__openerp__.py') or False
 
180
    terp_file = opj(mod_path, '__openerp__.py')
181
181
    if terp_file:
182
182
        info = {}
183
183
        if os.path.isfile(terp_file):