Launchpad automatic translations update.
[odoo/odoo.git] / openerp / addons / __init__.py
index d019985..9554e9b 100644 (file)
 
 """ Addons module.
 
-This module only serves to contain OpenERP addons. For the code to
-manage those addons, see openerp.modules. This module conveniently
-reexports some symbols from openerp.modules. Importing them from here
-is deprecated.
+This module serves to contain all OpenERP addons, across all configured addons
+paths. For the code to manage those addons, see openerp.modules.
+
+Addons are made available under `openerp.addons` after
+openerp.tools.config.parse_config() is called (so that the addons paths are
+known).
+
+This module also conveniently reexports some symbols from openerp.modules.
+Importing them from here is deprecated.
 
 """
 
-from openerp.modules import
-  get_module_resource,
-  get_module_path # used only by base_module_quality
+# get_module_path is used only by base_module_quality
+from openerp.modules import get_module_resource, get_module_path
 
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: