summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/ConfigParser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py
index 5043687..59bf4b5 100644
--- a/Lib/ConfigParser.py
+++ b/Lib/ConfigParser.py
@@ -361,9 +361,9 @@ class ConfigParser:
sectdict = self.__sections[section]
except KeyError:
raise NoSectionError(section)
- existed = sectdict.has_key(key)
+ existed = sectdict.has_key(option)
if existed:
- del sectdict[key]
+ del sectdict[option]
return existed
def remove_section(self, section):