summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/testall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testall.py b/tools/testall.py
index a62b53a..a7ff9eb 100755
--- a/tools/testall.py
+++ b/tools/testall.py
@@ -60,7 +60,7 @@ def find_modules_and_add_paths (root_path):
for module_file in import_list:
path, module = os.path.split(module_file)
module_list.append (module)
- print('Adding:', module_file)
+ print('Adding:', os.path.relpath(module_file))
if not path in sys.path:
sys.path.append (path)
if not os.path.dirname(path) in sys.path: