diff options
| author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-04 21:11:56 +0000 | 
|---|---|---|
| committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-04 21:11:56 +0000 | 
| commit | 8f787bf1d07b2f91c1bceea649aca5bf4bedb52c (patch) | |
| tree | ee42aea0b0f961d4fcd45a52de89efc8af9bfa7c | |
| parent | 40ebbeff23bb109c5215246f8d400f832e4065d4 (diff) | |
| download | cpython-git-8f787bf1d07b2f91c1bceea649aca5bf4bedb52c.tar.gz | |
Test changes before checking them in.
| -rw-r--r-- | Lib/distutils/fancy_getopt.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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] | 
