aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-06-30 16:12:37 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-06-30 16:12:37 +0000
commit4df4178899d4b1bcd67f9b902ae08756cc4db152 (patch)
tree5f94eaeafa431accd2f65a0b7c8d7da76aab892a /fetchmailconf
parent493bdbd8dbfb82f9689984498abc0ccb72e3baba (diff)
downloadfetchmail-4df4178899d4b1bcd67f9b902ae08756cc4db152.tar.gz
fetchmail-4df4178899d4b1bcd67f9b902ae08756cc4db152.tar.bz2
fetchmail-4df4178899d4b1bcd67f9b902ae08756cc4db152.zip
Fix listboxd deletion.
svn path=/trunk/; revision=1953
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf2
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]