diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-06-30 16:12:37 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-06-30 16:12:37 +0000 |
commit | 4df4178899d4b1bcd67f9b902ae08756cc4db152 (patch) | |
tree | 5f94eaeafa431accd2f65a0b7c8d7da76aab892a /fetchmailconf | |
parent | 493bdbd8dbfb82f9689984498abc0ccb72e3baba (diff) | |
download | fetchmail-4df4178899d4b1bcd67f9b902ae08756cc4db152.tar.gz fetchmail-4df4178899d4b1bcd67f9b902ae08756cc4db152.tar.bz2 fetchmail-4df4178899d4b1bcd67f9b902ae08756cc4db152.zip |
Fix listboxd deletion.
svn path=/trunk/; revision=1953
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmailconf b/fetchmailconf index 7b829571..311c59e9 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -440,7 +440,7 @@ class ListEdit(Frame): if not select: helpwin(listboxhelp) else: - index = select[0] + index = string.atoi(select[0]) if index: self.listwidget.delete(index) if self.list != None: del self.list[index] |