From: Jeremy Hylton Date: Tue, 4 Jun 2002 21:11:56 +0000 (+0000) Subject: Test changes before checking them in. X-Git-Tag: v2.3c1~5462 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f787bf1d07b2f91c1bceea649aca5bf4bedb52c;p=python Test changes before checking them in. --- diff --git a/Lib/distutils/fancy_getopt.py b/Lib/distutils/fancy_getopt.py index a11b4d5840..5de64e15da 100644 --- a/Lib/distutils/fancy_getopt.py +++ b/Lib/distutils/fancy_getopt.py @@ -359,7 +359,7 @@ class FancyGetopt: lines = ['Option summary:'] for option in self.option_table: - long, short, help = option_table[:3] + long, short, help = option[:3] text = wrap_text(help, text_width) if long[-1] == '=': long = long[0:-1]