diff options
-rwxr-xr-x | torturetest.py | 6 |
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." |