diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-03-01 10:17:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-03-01 10:17:32 +0000 |
commit | 1c78fddf38e013a2105b0e33f6a671b63545b5b0 (patch) | |
tree | 66cc04af9ca96f984f67fc1104623463740a7148 | |
parent | a34632c0322600df6ec0998520ae0410640716c5 (diff) | |
download | fetchmail-1c78fddf38e013a2105b0e33f6a671b63545b5b0.tar.gz fetchmail-1c78fddf38e013a2105b0e33f6a671b63545b5b0.tar.bz2 fetchmail-1c78fddf38e013a2105b0e33f6a671b63545b5b0.zip |
Display options when IDing.
svn path=/trunk/; revision=3167
-rwxr-xr-x | torturetest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/torturetest.py b/torturetest.py index efc1bde4..daaf7db0 100755 --- a/torturetest.py +++ b/torturetest.py @@ -55,6 +55,8 @@ class TestSite: rep = "%s %s at %s" % (self.proto, self.version, self.host) if self.capabilities: rep += " (" + self.capabilities + ")" + if self.options: + rep += " using " + self.options return rep def testmail(self): |