summaryrefslogtreecommitdiffstats
path: root/Lib/httplib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r--Lib/httplib.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py
index e58a30a..b9dc6e9 100644
--- a/Lib/httplib.py
+++ b/Lib/httplib.py
@@ -304,9 +304,7 @@ class HTTPResponse:
# are we using the chunked-style of transfer encoding?
tr_enc = self.msg.getheader('transfer-encoding')
- if tr_enc:
- if tr_enc.lower() != 'chunked':
- raise UnknownTransferEncoding()
+ if tr_enc and tr_enc.lower() == "chunked":
self.chunked = 1
self.chunk_left = None
else: