Mercurial > hg > MakeItSo
view makeitso/python_module/{{module}}.py @ 138:169e02e190ef
peg to tempita version and eliminate cruft
| author | Jeff Hammel <jhammel@mozilla.com> | 
|---|---|
| date | Tue, 21 Feb 2012 21:01:28 -0800 | 
| parents | d9201f911458 | 
| children | a203f79c537f | 
line wrap: on
 line source
#!/usr/bin/env python """ {{module}} """ import sys import optparse def main(args=sys.argv[1:]): # parse command line arguments 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) if __name__ == '__main__': main()
