aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-06-28 13:36:07 +0000
committerEric S. Raymond <esr@thyrsus.com>2000-06-28 13:36:07 +0000
commit5a60f96022ab2369d19fea05319a7357087ef8f3 (patch)
tree464f2aa25c21c2d4ed97777e178539bf20f1d8f6 /fetchmailconf
parent16ee8a05c9b6db4be48e53048f9bc25daa11fc37 (diff)
downloadfetchmail-5a60f96022ab2369d19fea05319a7357087ef8f3.tar.gz
fetchmail-5a60f96022ab2369d19fea05319a7357087ef8f3.tar.bz2
fetchmail-5a60f96022ab2369d19fea05319a7357087ef8f3.zip
String-quote what we put in the file.
svn path=/trunk/; revision=2915
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf6
1 files changed, 3 insertions, 3 deletions
diff --git a/fetchmailconf b/fetchmailconf
index d2ee951f..7f3778f7 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.25"
+version = "1.26"
from Tkinter import *
from Dialog import *
@@ -260,9 +260,9 @@ class User:
def __repr__(self):
res = " "
- res = res + "user " + `self.remote` + " there ";
+ res = res + "user '" + `self.remote` + "' there ";
if self.password:
- res = res + "with password " + `self.password` + " "
+ res = res + "with password '" + `self.password` + "' "
if self.localnames:
res = res + "is"
for x in self.localnames: