From ff4a23bbcb08e7dbb48fa8b5cfbafaea11e1f8c7 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 4 Dec 2000 16:29:13 +0000 Subject: remove_option(): Use the right variable name for the option name! This closes bug #124324. --- Lib/ConfigParser.py | 4 ++-- 1 file 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): -- cgit v0.12