diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-02-07 17:30:43 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-02-07 17:30:43 +0000 |
commit | ed889b8a4abec6b5db13c03370850f423ea89757 (patch) | |
tree | a80dcd427136111d773ed1ddde62093fbdeb5d9f /fetchmailconf | |
parent | 737b89c60586b61a6fd0fda5f0de05bc6ba3bf6a (diff) | |
download | fetchmail-ed889b8a4abec6b5db13c03370850f423ea89757.tar.gz fetchmail-ed889b8a4abec6b5db13c03370850f423ea89757.tar.bz2 fetchmail-ed889b8a4abec6b5db13c03370850f423ea89757.zip |
Rob Funk's fix.
svn path=/trunk/; revision=2377
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index 576774f9..75e0de01 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -4,7 +4,7 @@ # by Eric S. Raymond, <esr@snark.thyrsus.com>. # Requires Python with Tkinter, and the following OS-dependent services: # posix, posixpath, socket -version = "1.13" +version = "1.14" from Tkinter import * from Dialog import * @@ -628,7 +628,7 @@ class ConfigurationEdit(Frame, MyWidget): self.subwidgets[sitename] = ServerEdit(sitename, self).edit(self.mode, Toplevel()) def server_delete(self, sitename): - if self.configuration.has_keys(sitename): + if self.subwidgets.has_key(sitename): del self.configuration[sitename] def edit(self, mode): |