diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-01-25 19:41:22 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-02-04 09:52:04 +0100 |
commit | 735c79a2edb3b31a35ed3e484744807bb626ab77 (patch) | |
tree | ef49989901e51dcb573ca7f612ff267820650481 /libmproxy/protocol/tls.py | |
parent | 4e9579e93eee4a156fa60c1d58dcc9b8c113d367 (diff) | |
download | mitmproxy-735c79a2edb3b31a35ed3e484744807bb626ab77.tar.gz mitmproxy-735c79a2edb3b31a35ed3e484744807bb626ab77.tar.bz2 mitmproxy-735c79a2edb3b31a35ed3e484744807bb626ab77.zip |
increase coverage
Diffstat (limited to 'libmproxy/protocol/tls.py')
-rw-r--r-- | libmproxy/protocol/tls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/protocol/tls.py b/libmproxy/protocol/tls.py index af1a6055..ccae1661 100644 --- a/libmproxy/protocol/tls.py +++ b/libmproxy/protocol/tls.py @@ -349,7 +349,7 @@ class TlsLayer(Layer): layer = self.ctx.next_layer(self) layer() - def __repr__(self): + def __repr__(self): # pragma: no cover if self._client_tls and self._server_tls: return "TlsLayer(client and server)" elif self._client_tls: |