Mercurial > hg > MakeItSo
annotate makeitso/python_module/{{module}}.py @ 153:a5ea79f3221f
.strip() the description
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 01 Dec 2012 19:15:48 -0800 |
parents | 88f5bab340a1 |
children | ebc5cfe17d95 |
rev | line source |
---|---|
129
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
1 #!/usr/bin/env python |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
2 |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
3 """ |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
4 {{module}} |
152
88f5bab340a1
make this slightly less sucky
Jeff Hammel <jhammel@mozilla.com>
parents:
142
diff
changeset
|
5 {{description}} |
129
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
6 """ |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
7 |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
8 import sys |
130
d9201f911458
better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents:
129
diff
changeset
|
9 import optparse |
129
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
10 |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
11 def main(args=sys.argv[1:]): |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
12 |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
13 # parse command line arguments |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
14 usage = '%prog [options] ...' |
130
d9201f911458
better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents:
129
diff
changeset
|
15 class PlainDescriptionFormatter(optparse.IndentedHelpFormatter): |
142 | 16 """description formatter""" |
130
d9201f911458
better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents:
129
diff
changeset
|
17 def format_description(self, description): |
d9201f911458
better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents:
129
diff
changeset
|
18 if description: |
153 | 19 return description.strip() + '\n' |
130
d9201f911458
better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents:
129
diff
changeset
|
20 else: |
d9201f911458
better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents:
129
diff
changeset
|
21 return '' |
d9201f911458
better description formatting
Jeff Hammel <jhammel@mozilla.com>
parents:
129
diff
changeset
|
22 parser = optparse.OptionParser(usage=usage, description=__doc__, formatter=PlainDescriptionFormatter()) |
129
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
23 options, args = parser.parse_args(args) |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
24 |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
25 if __name__ == '__main__': |
57834c2b0937
add a single-file module to the thingy
Jeff Hammel <jhammel@mozilla.com>
parents:
diff
changeset
|
26 main() |