Skip to content
Snippets Groups Projects
Commit faa60474 authored by Fabien Meghazi's avatar Fabien Meghazi
Browse files

Allow initialize_sys_path() to be called more than once

parent 4ca17a2a
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,8 @@ MANIFEST = '__openerp__.py'
_logger = logging.getLogger(__name__)
# addons path as a list
ad_paths = []
ad_paths = [tools.config.addons_data_dir]
hooked = False
# Modules already loaded
loaded = []
......@@ -85,17 +86,21 @@ def initialize_sys_path():
PYTHONPATH.
"""
global ad_paths
if ad_paths:
return
global hooked
ad_paths = [tools.config.addons_data_dir]
ad_paths += map(lambda m: os.path.abspath(tools.ustr(m.strip())), tools.config['addons_path'].split(','))
for ad in tools.config['addons_path'].split(','):
ad = os.path.abspath(tools.ustr(ad.strip()))
if ad not in ad_paths:
ad_paths.append(ad)
# add base module path
base_path = os.path.abspath(os.path.join(os.path.dirname(os.path.dirname(__file__)), 'addons'))
ad_paths += [base_path]
if base_path not in ad_paths:
ad_paths.append(base_path)
sys.meta_path.append(AddonsImportHook())
if not hooked:
sys.meta_path.append(AddonsImportHook())
hooked = True
def get_module_path(module, downloaded=False, display_warning=True):
"""Return the path of the given module.
......
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