Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wm75 committed Sep 24, 2024
1 parent 37a6726 commit 724c83f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tools/parameters/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1529,7 +1529,7 @@ def get_options(self, trans, other_values):
with open(dataset.get_file_name()) as f:
head = f.readline()
cnames = head.rstrip("\n\r ").split("\t")
options = [("c%s: %s" % (c, cnames[int(c) - 1]), c, False) for i in column_list]
options = [("c%s: %s" % (c, cnames[int(c) - 1]), c, False) for c in column_list]
except Exception:
# ignore and rely on fallback
pass
Expand Down

0 comments on commit 724c83f

Please sign in to comment.