aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-06-05 06:01:14 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-06-05 06:01:14 +0000
commit7120c06484a58637c34322fbb001a5a028a1d5b3 (patch)
treecd5bb5a9116b84c8408bbd59fd8146370f0b5b9c
parent8599e7830147b038319b8a144a9582062e83edfd (diff)
downloadfetchmail-7120c06484a58637c34322fbb001a5a028a1d5b3.tar.gz
fetchmail-7120c06484a58637c34322fbb001a5a028a1d5b3.tar.bz2
fetchmail-7120c06484a58637c34322fbb001a5a028a1d5b3.zip
Fix new-user bug.
svn path=/trunk/; revision=1905
-rwxr-xr-xfetchmailconf4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf
index a30b6d35..6688a637 100755
--- a/fetchmailconf
+++ b/fetchmailconf
@@ -991,8 +991,8 @@ class UserEdit(Frame, MyWidget):
self.user = user
if self.user == None:
self.user = User()
- self.user.remote = user
- self.user.localnames = [user]
+ self.user.remote = username
+ self.user.localnames = [username]
server.users.append(self.user)
def edit(self, mode, master=None):