diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-11 18:15:51 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-11 18:15:51 (GMT) |
commit | f3623f310e92ddb499e020635fe4977aae38a719 (patch) | |
tree | d3ef5722722e23ec4ea7d2934ad842e80d5b7f53 /Lib | |
parent | 6459c8d067890a64fc526204ab7004f9c8fcfe98 (diff) | |
download | cpython-f3623f310e92ddb499e020635fe4977aae38a719.zip cpython-f3623f310e92ddb499e020635fe4977aae38a719.tar.gz cpython-f3623f310e92ddb499e020635fe4977aae38a719.tar.bz2 |
Somebody checked in a version of httplib that doesn't even compile --
SyntaxError. Fix it.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/httplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 == '': |