aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-03-01 10:09:46 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-03-01 10:09:46 +0000
commit01a7a941d21a1638033e520f304d118ec0d21c83 (patch)
tree7da85022dfb837bfd417ffeb17ddf3977639b806
parent98db54bf23348e671c2fe41466bcd8a3c6bb3b79 (diff)
downloadfetchmail-01a7a941d21a1638033e520f304d118ec0d21c83.tar.gz
fetchmail-01a7a941d21a1638033e520f304d118ec0d21c83.tar.bz2
fetchmail-01a7a941d21a1638033e520f304d118ec0d21c83.zip
Use oiptions field as *server* options.
svn path=/trunk/; revision=3165
-rwxr-xr-xtorturetest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/torturetest.py b/torturetest.py
index 0831f634..efc1bde4 100755
--- a/torturetest.py
+++ b/torturetest.py
@@ -41,9 +41,9 @@ class TestSite:
def entryprint(self):
"Print a .fetchmailrc entry corresponding to a site entry."
- return "poll %s-%s via %s with proto %s\n" \
- " user %s there with password %s is esr here %s\n\n" \
- % (self.host,self.proto,self.host,self.proto,self.userid,self.password,self.options)
+ return "poll %s-%s via %s with proto %s %s\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):
"Print an HTML server-type table entry."