Skip to content
Snippets Groups Projects
Commit 63c7aaca authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Merge branch 'fix-bilby-result-issue' into 'master'

Fix minor bug in merging files

See merge request !1029
parents 4b9c75ba e0211b08
No related branches found
No related tags found
No related merge requests found
......@@ -202,10 +202,10 @@ def main():
results_list = read_in_results(args.results)
if args.save:
for res in results_list:
for result in results_list:
if args.label is not None:
res.label = args.label
save(res, args)
result.label = args.label
save(result, args)
if args.merge:
result = results_list.combine()
......@@ -214,7 +214,7 @@ def main():
if args.outdir is not None:
result.outdir = args.outdir
save(res, args)
save(result, args)
if args.keys is not None:
print_matches(results_list, args)
......
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