Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f3623f3

Browse files
committed
Somebody checked in a version of httplib that doesn't even compile --
SyntaxError. Fix it.
1 parent 6459c8d commit f3623f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/httplib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ def makefile(self, mode, bufsize=None):
614614
break
615615
raise
616616
except socket.error, err:
617-
if err[0] = errno.EINTR:
617+
if err[0] == errno.EINTR:
618618
continue
619619
raise
620620
if buf == '':

0 commit comments

Comments
 (0)