Mercurial > hg > PaInt
changeset 1:a011af5e765a
spacing
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 21 Feb 2012 20:56:02 -0800 |
parents | 96362e527bd6 |
children | 4be44827e436 |
files | paint/main.py |
diffstat | 1 files changed, 13 insertions(+), 14 deletions(-) [+] |
line wrap: on
line diff
--- a/paint/main.py Tue Feb 21 20:30:10 2012 -0800 +++ b/paint/main.py Tue Feb 21 20:56:02 2012 -0800 @@ -9,20 +9,19 @@ def main(args=sys.argv[:]): - # parse command line options - usage = '%prog [options]' + # parse command line options + usage = '%prog [options]' - # description formatter - class PlainDescriptionFormatter(optparse.IndentedHelpFormatter): - def format_description(self, description): - if description: - return description + '\n' - else: - return '' - - parser = optparse.OptionParser(usage=usage, description=__doc__, formatter=PlainDescriptionFormatter()) - options, args = parser.parse_args(args) + # description formatter + class PlainDescriptionFormatter(optparse.IndentedHelpFormatter): + def format_description(self, description): + if description: + return description + '\n' + else: + return '' + + parser = optparse.OptionParser(usage=usage, description=__doc__, formatter=PlainDescriptionFormatter()) + options, args = parser.parse_args(args) if __name__ == '__main__': - main() - + main()