diff options
Diffstat (limited to 'Lib/httplib.py')
-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 9cdfd2a5e8..98875400ec 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -373,7 +373,7 @@ class HTTPResponse: # Assume it's a Simple-Response from an 0.9 server. # We have to convert the first line back to raw bytes # because self.fp.readline() needs to return bytes. - self.fp = LineAndFileWrapper(bytes(line), self.fp) + self.fp = LineAndFileWrapper(bytes(line, "ascii"), self.fp) return "HTTP/0.9", 200, "" # The status code is a three-digit number |