Skip to content
Snippets Groups Projects
Commit d23797c7 authored by Michiel Cottaar's avatar Michiel Cottaar
Browse files

BUG: actually store data/fits in output directory

parent e1ecfe82
No related branches found
No related tags found
No related merge requests found
...@@ -96,7 +96,7 @@ def gen_data(): ...@@ -96,7 +96,7 @@ def gen_data():
for flipped in (False, True): for flipped in (False, True):
directory[3] = 'flipped' if flipped else '' directory[3] = 'flipped' if flipped else ''
fdir = '_'.join([d for d in directory if len(d) > 0]) fdir = os.path.join(OUTDIR, '_'.join([d for d in directory if len(d) > 0]))
if not os.path.isdir(fdir): if not os.path.isdir(fdir):
os.mkdir(fdir) os.mkdir(fdir)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment