We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbfe6e9 commit c863bfaCopy full SHA for c863bfa
pySDC/playgrounds/dedalus/scripts/collectInfos.py
@@ -23,9 +23,9 @@
23
print(f"Collecting {prefix}*/infos.json into {outFolder}")
24
os.makedirs(outFolder, exist_ok=True)
25
26
-folders = glob.glob(args.prefix)
+folders = glob.glob(args.prefix+"*")
27
for folder in folders:
28
- src = f"{folders}/infos.json"
+ src = f"{folder}/infos.json"
29
if not os.path.isfile(src):
30
print(f" -- {folder} does not contain infos.json, ignoring ...")
31
continue
0 commit comments