From f3623f310e92ddb499e020635fe4977aae38a719 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Thu, 11 Oct 2001 18:15:51 +0000 Subject: Somebody checked in a version of httplib that doesn't even compile -- SyntaxError. Fix it. --- Lib/httplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/httplib.py b/Lib/httplib.py index cb06856..0fd6ab4 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 == '': -- cgit v0.12