summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--validate/launcher/apps/gstvalidate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/validate/launcher/apps/gstvalidate.py b/validate/launcher/apps/gstvalidate.py
index 553e8f9..51f9205 100644
--- a/validate/launcher/apps/gstvalidate.py
+++ b/validate/launcher/apps/gstvalidate.py
@@ -682,7 +682,7 @@ not been tested and explicitely activated if you set use --wanted-tests ALL""")
else:
for root, dirs, files in os.walk(path):
for f in files:
- fpath = os.path.join(os.path.abspath(path), root, f)
+ fpath = os.path.abspath(os.path.join(root, f))
if os.path.isdir(fpath) or \
fpath.endswith(GstValidateMediaDescriptor.MEDIA_INFO_EXT) or\
fpath.endswith(ScenarioManager.FILE_EXTENSION):