209
209
def add_string(proto, help, maxl, prefix_width=20):
210
210
help_lines = textwrap.wrap(help, maxl - prefix_width,
213
212
line_with_indent = '\n' + ' ' * prefix_width
214
213
help_text = line_with_indent.join(help_lines)
215
214
return "%-20s%s\n" % (proto, help_text)