Random generation of default avatar
[odoo/odoo.git] / openerp / __init__.py
index cc35566..5827b74 100644 (file)
@@ -27,13 +27,11 @@ SUPERUSER_ID = 1
 
 import addons
 import conf
-import cron
 import loglevels
 import modules
 import netsvc
 import osv
 import pooler
-import pychart
 import release
 import report
 import run_tests
@@ -46,12 +44,5 @@ import wizard
 import workflow
 import wsgi
 
-# Is the server running in multi-process mode (e.g. behind Gunicorn).
-# If this is True, the processes have to communicate some events,
-# e.g. database update or cache invalidation. Each process has also
-# its own copy of the data structure and we don't need to care about
-# locks between threads.
-multi_process = False
-
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: