From: Tim Peters Date: Thu, 11 Oct 2001 18:15:51 +0000 (+0000) Subject: Somebody checked in a version of httplib that doesn't even compile -- X-Git-Tag: v2.2.1c1~1334 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f3623f310e92ddb499e020635fe4977aae38a719;p=python Somebody checked in a version of httplib that doesn't even compile -- SyntaxError. Fix it. --- diff --git a/Lib/httplib.py b/Lib/httplib.py index cb068564f8..0fd6ab4449 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -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 == '':