fix ClientHello.__repr__

This commit is contained in:
Maximilian Hils 2016-05-02 19:05:14 -07:00
parent a91d8d9d26
commit 7e633d8a8a
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ class TlsClientHello(object):
def __repr__(self):
return "TlsClientHello( sni: %s alpn_protocols: %s, cipher_suites: %s)" % \
(self._client_hello.sni, self.alpn_protocols, self.cipher_suites)
(self.sni, self.alpn_protocols, self.cipher_suites)
class TlsLayer(Layer):