aboutsummaryrefslogtreecommitdiffstats
path: root/netlib
diff options
context:
space:
mode:
authorMaximilian Hils <git@maximilianhils.com>2016-02-19 00:30:37 +0100
committerMaximilian Hils <git@maximilianhils.com>2016-02-19 00:30:37 +0100
commit2bec6a35e211422c61a5404ec6a8c7572c318b54 (patch)
tree1865b6a3acf374bd46bd1ef864c4e87dc9f2808e /netlib
parentecb26c3c822ff4f4c61233c8265faed666625677 (diff)
downloadmitmproxy-2bec6a35e211422c61a5404ec6a8c7572c318b54.tar.gz
mitmproxy-2bec6a35e211422c61a5404ec6a8c7572c318b54.tar.bz2
mitmproxy-2bec6a35e211422c61a5404ec6a8c7572c318b54.zip
fix #956
Diffstat (limited to 'netlib')
-rw-r--r--netlib/tcp.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/netlib/tcp.py b/netlib/tcp.py
index 61b41cdc..6423888a 100644
--- a/netlib/tcp.py
+++ b/netlib/tcp.py
@@ -355,9 +355,6 @@ class Address(utils.Serializable):
def __repr__(self):
return "{}:{}".format(self.host, self.port)
- def __str__(self):
- return str(self.address)
-
def __eq__(self, other):
if not other:
return False
@@ -698,8 +695,7 @@ class TCPClient(_Connection):
if self.source_address:
connection.bind(self.source_address())
connection.connect(self.address())
- if not self.source_address:
- self.source_address = Address(connection.getsockname())
+ self.source_address = Address(connection.getsockname())
except (socket.error, IOError) as err:
raise TcpException(
'Error connecting to "%s": %s' %