diff options
author | Raymond Hettinger <python@rcn.com> | 2011-08-09 12:07:15 -0700 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-08-09 12:07:15 -0700 |
commit | 3ea5224c43663ee4a18e8a08ca927fe8a4790f24 (patch) | |
tree | 6a2e2a21c7454ebc8e88409586cf37f847aec10f /Lib/ConfigParser.py | |
parent | d7fbc8bf12c40bdddae86279c1c000a552040107 (diff) | |
download | cpython-git-3ea5224c43663ee4a18e8a08ca927fe8a4790f24.tar.gz |
Issue 12717: Fix-up an earlier backport in ConfigParser.
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 6cf3c2ac5d..963a4187e4 100644 --- a/Lib/ConfigParser.py +++ b/Lib/ConfigParser.py @@ -570,7 +570,7 @@ class _Chainmap(_UserDict.DictMixin): def keys(self): result = [] seen = set() - for mapping in self_maps: + for mapping in self._maps: for key in mapping: if key not in seen: result.append(key) |