diff options
author | Brett Cannon <bcannon@gmail.com> | 2007-03-21 22:26:20 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2007-03-21 22:26:20 (GMT) |
commit | ca477b228084b9f8f9c8d5818e49261d708dfdcf (patch) | |
tree | 77859a50d3fddc5e3a4ea7826317511706beb42a /Lib/ConfigParser.py | |
parent | 3a38362592ee423852d1b32a32d65520bc003ffc (diff) | |
download | cpython-ca477b228084b9f8f9c8d5818e49261d708dfdcf.zip cpython-ca477b228084b9f8f9c8d5818e49261d708dfdcf.tar.gz cpython-ca477b228084b9f8f9c8d5818e49261d708dfdcf.tar.bz2 |
When removing indexing/slicing on exceptions some places were changed
inappropriately from ``e[0]`` to ``e.message`` instead of ``e.args[0]``. The
reason it needs to be the last option is the dichotomy of 'message' and 'args':
'message' can be the empty string but args[0] can have a value if more than one
argument was passed.
Diffstat (limited to 'Lib/ConfigParser.py')
-rw-r--r-- | Lib/ConfigParser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 9a365c0..8e644e1 100644 --- a/Lib/ConfigParser.py +++ b/Lib/ConfigParser.py @@ -569,7 +569,7 @@ class ConfigParser(RawConfigParser): value = value % vars except KeyError as e: raise InterpolationMissingOptionError( - option, section, rawval, e.message) + option, section, rawval, e.args[0]) else: break if "%(" in value: |