117
111
option_str = "\nOptions:\n"
118
112
for option_name, option in sorted(options.items()):
119
113
for name, short_name, argname, help in option.iter_switches():
127
120
l += (30 - len(l)) * ' ' + (help or '')
128
121
wrapped = textwrap.fill(l, initial_indent='',
132
123
option_str = option_str + wrapped + '\n'