summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-11-30 18:41:51 +0000
committerVincent Sanders <vince@kyllikki.org>2019-11-30 18:41:51 +0000
commitfe670174a105e1a07fb38db1b2d318979b0a68e8 (patch)
tree1ba17ed7586626b8b6180cd56dbebdbd90b26d75
parent9ef04bd727252aee9dc6e074303f5a2aefb893e3 (diff)
downloadnetsurf-test-fe670174a105e1a07fb38db1b2d318979b0a68e8.tar.gz
netsurf-test-fe670174a105e1a07fb38db1b2d318979b0a68e8.tar.bz2
fix division directory yaml paths
-rwxr-xr-xcgi-bin/monkey-index.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/cgi-bin/monkey-index.cgi b/cgi-bin/monkey-index.cgi
index 9feecd9..7154dc2 100755
--- a/cgi-bin/monkey-index.cgi
+++ b/cgi-bin/monkey-index.cgi
@@ -44,7 +44,7 @@ def main():
return
flist = [f for f in os.listdir(testroot) if f.endswith('.yaml')]
- flist.extend(f for f in os.listdir(testroot + '/' + division) if f.endswith('.yaml'))
+ flist.extend(os.path.join(division, f) for f in os.listdir(testroot + '/' + division) if f.endswith('.yaml'))
# load all test plan yaml files
for fname in flist: