aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/tools/component_api_helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/tools/component_api_helper.py')
-rw-r--r--tensorflow/python/tools/component_api_helper.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tensorflow/python/tools/component_api_helper.py b/tensorflow/python/tools/component_api_helper.py
index 988ecc61f0..97f46719e5 100644
--- a/tensorflow/python/tools/component_api_helper.py
+++ b/tensorflow/python/tools/component_api_helper.py
@@ -65,9 +65,10 @@ def package_hook(parent_package_str, child_package_str, error_msg=None):
Will allow the following import statement to work.
>>> import parent.child
"""
- child_pkg_path = [os.path.join(os.path.dirname(child_pkg.__file__), "..")]
+ child_pkg_path = [os.path.abspath(
+ os.path.join(os.path.dirname(child_pkg.__file__), ".."))]
try:
- parent_pkg.__path__ += child_pkg_path
+ parent_pkg.__path__ = child_pkg_path + parent_pkg.__path__
except AttributeError:
parent_pkg.__path__ = child_pkg_path