Commit f3623f31 authored by Tim Peters's avatar Tim Peters

Somebody checked in a version of httplib that doesn't even compile --

SyntaxError.  Fix it.
parent 6459c8d0
......@@ -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 == '':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment