[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [chutney/master] Python3: get socket errno from errno attr, not from subscripting
commit e54f24dfb49101bd73fb617e94ea6afd51ba1e90
Author: Nick Mathewson <nickm@xxxxxxxxxxxxxx>
Date: Thu Feb 28 12:36:23 2019 -0500
Python3: get socket errno from errno attr, not from subscripting
---
lib/chutney/Traffic.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/chutney/Traffic.py b/lib/chutney/Traffic.py
index 283f286..0c7776a 100644
--- a/lib/chutney/Traffic.py
+++ b/lib/chutney/Traffic.py
@@ -213,7 +213,7 @@ class Source(Peer):
debug("socket %d connecting to %r..."%(self.fd(),dest))
self.s.connect(dest)
except socket.error as e:
- if e[0] != errno.EINPROGRESS:
+ if e.errno != errno.EINPROGRESS:
raise
def on_readable(self):
@@ -288,7 +288,7 @@ class Source(Peer):
try:
n = self.s.send(self.outbuf)
except socket.error as e:
- if e[0] == errno.ECONNREFUSED:
+ if e.errno == errno.ECONNREFUSED:
debug("connection refused (fd=%d)" % self.fd())
return -1
raise
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits