112
111
option_str = "\nOptions:\n"
113
112
for option_name, option in sorted(options.items()):
114
113
for name, short_name, argname, help in option.iter_switches():
121
118
assert len(short_name) == 1
124
123
wrapped = textwrap.fill(l, initial_indent='',
125
124
subsequent_indent=30*' ')
126
125
option_str = option_str + wrapped + '\n'