From 43ed82062f400e9c6e1bf59ce2e3fd29bf0cb09c Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Fri, 27 Nov 2015 21:20:00 +0100 Subject: fix #847 --- libmproxy/protocol/tls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libmproxy/protocol') diff --git a/libmproxy/protocol/tls.py b/libmproxy/protocol/tls.py index 871926ee..ed747643 100644 --- a/libmproxy/protocol/tls.py +++ b/libmproxy/protocol/tls.py @@ -318,7 +318,7 @@ class TlsLayer(Layer): client_hello = ClientHello.parse(raw_client_hello) except ConstructError as e: self.log("Cannot parse Client Hello: %s" % repr(e), "error") - self.log("Raw Client Hello:\r\n:%s" % raw_client_hello.encode("hex"), "debug") + self.log("Raw Client Hello: %s" % raw_client_hello.encode("hex"), "debug") return self.client_ciphers = client_hello.cipher_suites.cipher_suites -- cgit v1.2.3