]> gitweb.michael.orlitzky.com - dead/census-tools.git/commitdiff
strip() whitespace from OptionParser descriptions.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 22 Sep 2009 06:49:48 +0000 (02:49 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 22 Sep 2009 06:49:48 +0000 (02:49 -0400)
bin/find_avg_population_density
bin/pg2kml

index e6d8ac75906c7bf722e0dd310c309d2a26d820f5..05e2733928765e16b253cbe7b5eeb478f9393cdb 100755 (executable)
@@ -43,7 +43,7 @@ usage = '%prog [options] <longitude> <latitude>'
 parser = OptionParser(usage=usage, add_help_option = False)
 
 # Use this module's docstring as the description.
-parser.description = __doc__
+parser.description = __doc__.strip()
 
 parser.add_option('-h',
                   '--host',
index 084abccd993624941aeb73cbe0c7a8195bc90577..1fddabec07811fc147d8a160db4a9654730f97f5 100755 (executable)
@@ -33,7 +33,7 @@ to stdout.
 parser = OptionParser(add_help_option = False)
 
 # Use this module's docstring as the description.
-parser.description = __doc__
+parser.description = __doc__.strip()
 
 parser.add_option('-h',
                   '--host',