Commit ae9af129 authored by Theodor-Adrian Stana's avatar Theodor-Adrian Stana

sw: Added a couple of parantheses to a tuple in mass-multiboot.py

parent 60f4ce9b
......@@ -162,7 +162,7 @@ if __name__ == "__main__":
# Get gateware list
print("Which gateware would you like to program?")
gw_list = sorted(get_gw_list(GW_DIR, board))
for i, gw in enumerate(gw_list):
for (i, gw) in enumerate(gw_list):
print(" %2d -> %s" % (i, os.path.basename(gw)))
start = False
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment