From: Greg Ward Date: Thu, 8 Jun 2000 00:35:33 +0000 (+0000) Subject: Fixed so we print more than just the first line of help for options with X-Git-Tag: v2.0b1~1541 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=373dbfa723e79d33c97007194f4a674afedd5c96;p=python Fixed so we print more than just the first line of help for options with a short form and text that wraps onto multiple lines. --- diff --git a/Lib/distutils/fancy_getopt.py b/Lib/distutils/fancy_getopt.py index a593354c9d..6adfc819c2 100644 --- a/Lib/distutils/fancy_getopt.py +++ b/Lib/distutils/fancy_getopt.py @@ -369,9 +369,6 @@ class FancyGetopt: else: lines.append (" --%-*s " % (max_opt, long)) - for l in text[1:]: - lines.append (big_indent + l) - # Case 2: we have a short option, so we have to include it # just after the long option else: @@ -382,6 +379,9 @@ class FancyGetopt: else: lines.append (" --%-*s" % opt_names) + for l in text[1:]: + lines.append (big_indent + l) + # for self.option_table return lines