Commit 191a5b0a authored by Jeremy Hylton's avatar Jeremy Hylton

Track extra arg to option_table to all uses of it

parent 6dc1366e
......@@ -358,8 +358,8 @@ class FancyGetopt:
else:
lines = ['Option summary:']
for (long,short,help) in self.option_table:
for option in self.option_table:
long, short, help = option_table[:3]
text = wrap_text(help, text_width)
if long[-1] == '=':
long = long[0:-1]
......
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