Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
faa60474
Commit
faa60474
authored
10 years ago
by
Fabien Meghazi
Browse files
Options
Downloads
Patches
Plain Diff
Allow initialize_sys_path() to be called more than once
parent
4ca17a2a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openerp/modules/module.py
+12
-7
12 additions, 7 deletions
openerp/modules/module.py
with
12 additions
and
7 deletions
openerp/modules/module.py
+
12
−
7
View file @
faa60474
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment