[FIX] jsdoc: .include lends to the instances (Class#), not to the class
[odoo/odoo.git] / openerp-web.py
index a9c948b..5617a0b 100755 (executable)
@@ -4,6 +4,7 @@ import os
 import sys
 import tempfile
 import logging
+import logging.config
 
 import werkzeug.serving
 
@@ -43,12 +44,12 @@ if __name__ == "__main__":
     (options, args) = optparser.parse_args(sys.argv[1:])
 
     os.environ["TZ"] = "UTC"
-    
+
     if not options.log_config:
         logging.basicConfig(level=getattr(logging, options.log_level.upper()))
     else:
         logging.config.fileConfig(options.log_config)
-    
+
     app = web.common.dispatch.Root(options)
 
     werkzeug.serving.run_simple(