Browse Source

Merge pull request #2367 from spamdaemon/patch-1

Fixed a syntax error with python 3.6
master
ThomasV 9 years ago committed by GitHub
parent
commit
51b6fa0e46
  1. 2
      lib/util.py

2
lib/util.py

@ -534,7 +534,7 @@ class SocketPipe:
raise timeout
except ssl.SSLError:
raise timeout
except socket.error, err:
except socket.error as err:
if err.errno == 60:
raise timeout
elif err.errno in [11, 35, 10035]:

Loading…
Cancel
Save