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