blob: bd6feb1832bcf72990ea1065a998c823ed9095a6 [file] [log] [blame]
import optparse
# Don't wrap description text to give us more control over newlines.
class HelpFormatter(optparse.IndentedHelpFormatter):
def format_description(self, description):
if description:
indent = " "*self.current_indent
return indent + description
else:
return None