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

SyntaxError.  Fix it.
This commit is contained in:
Tim Peters 2001-10-11 18:15:51 +00:00
parent 6459c8d067
commit f3623f310e
1 changed files with 1 additions and 1 deletions

View File

@ -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 == '':