Skip to content
Snippets Groups Projects
Commit 9f11dfe5 authored by Vo Minh Thu's avatar Vo Minh Thu
Browse files

[IMP] startup script: added little reminder when the `web` module can not be imported.

bzr revid: vmt@openerp.com-20111007073330-t0mh6x7ohv82i1g6
parent 28b0daea
No related branches found
No related tags found
No related merge requests found
......@@ -247,7 +247,12 @@ if __name__ == "__main__":
if info['post_load']:
getattr(sys.modules[m], info['post_load'])()
except Exception:
logging.exception('Failed to load server-wide module `%s`', m)
msg = ''
if m == 'web':
msg = """
The `web` module is provided by the addons found in the `openerp-web` project.
Maybe you forgot to add those addons in your addons_path configuration."""
logging.exception('Failed to load server-wide module `%s`.%s', m, msg)
setup_pid_file()
logger = logging.getLogger('server')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment