Somebody checked in a version of httplib that doesn't even compile --
SyntaxError. Fix it.
This commit is contained in:
parent
6459c8d067
commit
f3623f310e
|
@ -614,7 +614,7 @@ class FakeSocket:
|
|||
break
|
||||
raise
|
||||
except socket.error, err:
|
||||
if err[0] = errno.EINTR:
|
||||
if err[0] == errno.EINTR:
|
||||
continue
|
||||
raise
|
||||
if buf == '':
|
||||
|
|
Loading…
Reference in New Issue