Skip to content

Commit c863bfa

Browse files
committed
TL: gghghgn
1 parent cbfe6e9 commit c863bfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pySDC/playgrounds/dedalus/scripts/collectInfos.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
print(f"Collecting {prefix}*/infos.json into {outFolder}")
2424
os.makedirs(outFolder, exist_ok=True)
2525

26-
folders = glob.glob(args.prefix)
26+
folders = glob.glob(args.prefix+"*")
2727
for folder in folders:
28-
src = f"{folders}/infos.json"
28+
src = f"{folder}/infos.json"
2929
if not os.path.isfile(src):
3030
print(f" -- {folder} does not contain infos.json, ignoring ...")
3131
continue

0 commit comments

Comments
 (0)