aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmailconf
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-08-05 15:52:15 +0000
committerEric S. Raymond <esr@thyrsus.com>2000-08-05 15:52:15 +0000
commit79ade05f5793c2b6dd6b2a7104aaf65ea1da9cb8 (patch)
tree227a7824fab980b48a69de4cdc9810a16b46ef73 /fetchmailconf
parent7274caa13ba0c82c8f4c78d06e73768a1cc9768b (diff)
downloadfetchmail-79ade05f5793c2b6dd6b2a7104aaf65ea1da9cb8.tar.gz
fetchmail-79ade05f5793c2b6dd6b2a7104aaf65ea1da9cb8.tar.bz2
fetchmail-79ade05f5793c2b6dd6b2a7104aaf65ea1da9cb8.zip
Don't doublequote user and password.
svn path=/trunk/; revision=2941
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-xfetchmailconf6
1 files changed, 3 insertions, 3 deletions
diff --git a/fetchmailconf b/fetchmailconf
index 74ea9d91..30ddb206 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.27"
+version = "1.28"
from Tkinter import *
from Dialog import *
@@ -262,9 +262,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: