summaryrefslogtreecommitdiff
path: root/Examples/python/import_packages/same_modnames1/runme.py
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/python/import_packages/same_modnames1/runme.py')
-rw-r--r--Examples/python/import_packages/same_modnames1/runme.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/Examples/python/import_packages/same_modnames1/runme.py b/Examples/python/import_packages/same_modnames1/runme.py
index 923f0e0bb..7bec1ec1e 100644
--- a/Examples/python/import_packages/same_modnames1/runme.py
+++ b/Examples/python/import_packages/same_modnames1/runme.py
@@ -1,5 +1,9 @@
+import os.path
+
# Test import of same modules from different packages
-print "Testing %module(package=...) + %import + same modules in different packages"
+testname = os.path.basename(os.path.dirname(os.path.abspath(__file__)))
+print "Testing " + testname + " - %module(package=...) + python 'import' in __init__.py"
+
import pkg2.foo
print " Finished importing pkg2.foo"