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