commit | 3ea5224c43663ee4a18e8a08ca927fe8a4790f24 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Tue Aug 09 12:07:15 2011 -0700 |
committer | Raymond Hettinger <python@rcn.com> | Tue Aug 09 12:07:15 2011 -0700 |
tree | 6a2e2a21c7454ebc8e88409586cf37f847aec10f | |
parent | d7fbc8bf12c40bdddae86279c1c000a552040107 [diff] [blame] |
Issue 12717: Fix-up an earlier backport in ConfigParser.
diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 6cf3c2a..963a418 100644 --- a/Lib/ConfigParser.py +++ b/Lib/ConfigParser.py
@@ -570,7 +570,7 @@ 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)