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