diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2003-02-06 19:52:56 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2003-02-06 19:52:56 (GMT) |
commit | 01892664561cab9ff9ae62c4595137d22c39ac6c (patch) | |
tree | cc1e69eb092b8513aea5bb2c79e0a89768ba353d /Lib | |
parent | 83e879d99fc855dfca597d222b4c5a372d1611eb (diff) | |
download | cpython-01892664561cab9ff9ae62c4595137d22c39ac6c.zip cpython-01892664561cab9ff9ae62c4595137d22c39ac6c.tar.gz cpython-01892664561cab9ff9ae62c4595137d22c39ac6c.tar.bz2 |
A few naughty external scripts do 'raise getopt.error, "blah"', and
now crash because two arguments are expected. Add a default value
to keep those scripts running.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/getopt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/getopt.py b/Lib/getopt.py index 4285cbb..04e881e 100644 --- a/Lib/getopt.py +++ b/Lib/getopt.py @@ -39,7 +39,7 @@ import os class GetoptError(Exception): opt = '' msg = '' - def __init__(self, msg, opt): + def __init__(self, msg, opt=''): self.msg = msg self.opt = opt Exception.__init__(self, msg, opt) |