aboutsummaryrefslogtreecommitdiffstats
path: root/torturetest.py
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-09-24 17:42:15 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-09-24 17:42:15 +0000
commite72123a74b3003d3b18f588d3b186951ffdc705e (patch)
treeac6502e8b1e87688389354e9a4170416e6c45b2f /torturetest.py
parentc570a9dccb0b9dd9d4d6250fd5a4345f6e46d44a (diff)
downloadfetchmail-e72123a74b3003d3b18f588d3b186951ffdc705e.tar.gz
fetchmail-e72123a74b3003d3b18f588d3b186951ffdc705e.tar.bz2
fetchmail-e72123a74b3003d3b18f588d3b186951ffdc705e.zip
Quote password so we don't choke on weird ones.
svn path=/trunk/; revision=3474
Diffstat (limited to 'torturetest.py')
-rwxr-xr-xtorturetest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/torturetest.py b/torturetest.py
index c038fe52..fc5412fc 100755
--- a/torturetest.py
+++ b/torturetest.py
@@ -42,7 +42,7 @@ class TestSite:
def entryprint(self):
"Print a .fetchmailrc entry corresponding to a site entry."
return "poll %s-%s via %s with proto %s %s\n" \
- " user %s there with password %s is esr here\n\n" \
+ " user %s there with password '%s' is esr here\n\n" \
% (self.host,self.proto,self.host,self.proto,self.options,self.userid,self.password)
def tableprint(self):