Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 98958f8

Browse files
committed
minor minor update
1 parent 0d6afca commit 98958f8

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

doc/THANKS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@ Jose Fonseca <[email protected]>
143143
Alan Franzoni <[email protected]>
144144
for helping me out with Python subprocess library
145145

146+
Harold Fry <[email protected]>
147+
for suggesting a minor enhancement
148+
146149
Daniel G. Gamonal <[email protected]>
147150
for reporting a minor bug
148151

@@ -532,6 +535,9 @@ buawig <[email protected]>
532535
533536
for reporting several bugs
534537

538+
539+
for reporting a minor bug
540+
535541
dragoun dash <[email protected]>
536542
for reporting a minor bug
537543

lib/request/basic.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ def checkCharEncoding(encoding):
107107
# popular typos/errors
108108
if '8858' in encoding:
109109
encoding = encoding.replace('8858', '8859') # iso-8858 -> iso-8859
110+
elif '8559' in encoding:
111+
encoding = encoding.replace('8559', '8859') # iso-8559 -> iso-8859
110112
elif '5889' in encoding:
111113
encoding = encoding.replace('5889', '8859') # iso-5889 -> iso-8859
112114
elif '2313' in encoding:

0 commit comments

Comments
 (0)