Skip to content

Commit be364b6

Browse files
committed
cleanup adding of gzip to accept-encoding
1 parent bc6a2ca commit be364b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mechanize/_gzip.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,10 @@ def __copy__(self):
185185
def http_request(self, request):
186186
if self.request_gzip:
187187
existing = [
188-
x.strip()
188+
x.strip().lower()
189189
for x in request.get_header('Accept-Encoding', '').split(',')
190190
]
191-
if sum('gzip' in x for x in existing) < 1:
191+
if 'gzip' not in existing:
192192
existing.append('gzip')
193193
request.add_header("Accept-Encoding",
194194
', '.join(filter(None, existing)))

0 commit comments

Comments
 (0)