fixed rocket ssl issue 787

This commit is contained in:
Massimo Di Pierro
2012-05-10 22:29:12 -05:00
parent a9aff39cd8
commit 6b337dec48
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 1.99.7 (2012-05-10 22:23:57) dev
Version 1.99.7 (2012-05-10 22:29:01) dev
+1 -1
View File
@@ -1227,7 +1227,7 @@ class Worker(Thread):
def _handleError(self, typ, val, tb):
if typ == SSLError:
if 'timed out' in val.args[0]:
if 'timed out' in str(val.args[0]):
typ = SocketTimeout
if typ == SocketTimeout:
if __debug__: