Skip to content
Snippets Groups Projects
Commit cf048d09 authored by Fidel Alfaro Almagro's avatar Fidel Alfaro Almagro :speech_balloon:
Browse files

Bug fixed

parent 46fc0766
No related branches found
No related tags found
No related merge requests found
...@@ -59,11 +59,11 @@ def run(ctx, ...@@ -59,11 +59,11 @@ def run(ctx,
if os.path.exists(IDP_file): if os.path.exists(IDP_file):
with open(IDP_file, "r", encoding="utf-8") as f: with open(IDP_file, "r", encoding="utf-8") as f:
IDPs = f.read().strip().split() IDPs_l = f.read().strip().split()
if len(IDPs) != num_IDPs: if len(IDPs_l) != num_IDPs:
result += " " + result_nans result += " " + result_nans
else: else:
result += " " + " ".join(IDPs) result += " " + " ".join(IDPs_l)
else: else:
result += " " + result_nans result += " " + result_nans
......
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