aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-09-08 15:43:56 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-09-08 15:43:56 +0000
commit436e53cae59d7c609b13e2a438102322695e6b25 (patch)
tree9b6318be4a5dd4bed2d17bb9d1599690f992c3b1 /fetchmailconf
parentba1482c47fbbdb8a2bb81acdfce585f41f6e3866 (diff)
downloadfetchmail-436e53cae59d7c609b13e2a438102322695e6b25.tar.gz
fetchmail-436e53cae59d7c609b13e2a438102322695e6b25.tar.bz2
fetchmail-436e53cae59d7c609b13e2a438102322695e6b25.zip
Almost ready to ship.
svn path=/trunk/; revision=2068
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf
index e6043000..e4912c64 100755
--- a/fetchmailconf
+++ b/fetchmailconf
@@ -7,7 +7,7 @@
#
# TO DO: Arrange for save and quit buttons to clean up all frames dependent
# on the current ones.
-version = "1.3"
+version = "1.4"
from Tkinter import *
from Dialog import *
@@ -278,7 +278,7 @@ class User:
str = str + "\n"
for fld in ('smtpaddress', 'preconnect', 'postconnect', 'mda'):
if getattr(self, fld):
- str = str + " %s \"%s\"\n" % (fld, `getattr(self, fld)`)
+ str = str + " %s %s\n" % (fld, `getattr(self, fld)`)
if self.antispam != UserDefaults.antispam:
str = str + " antispam " + self.antispam + "\n"
return str;