Skip to content

Commit 3c6d036

Browse files
yzheng6GitHub Enterprise
authored andcommitted
Fix bug in workflow fetchdata (#762)
1 parent ab3613a commit 3c6d036

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/imagesets/imgset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def fetchdata(self):
219219

220220
# Download files, preserving relative directory hierarchy
221221
for testname, fetchfiles in workflowdata.items():
222-
wfdatadir = pjoin(self.datadir, dataset)
222+
wfdatadir = pjoin(self.datadir, testname)
223223
os.makedirs(wfdatadir, exist_ok=True)
224224
for fname in fetchfiles:
225225
url = f"{art_base}/{testname}/{fname}"

0 commit comments

Comments
 (0)