mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
utils/web.py: Python 3 should use decode() only if it is a bytes object.
This commit is contained in:
parent
a82ad9cb1a
commit
2eec980c8e
@ -192,6 +192,7 @@ def htmlToText(s, tagReplace=' '):
|
|||||||
try:
|
try:
|
||||||
import chardet.universaldetector
|
import chardet.universaldetector
|
||||||
except ImportError:
|
except ImportError:
|
||||||
|
if sys.version_info[0] < 3 or isinstance(s, bytes):
|
||||||
s = s.decode('utf8')
|
s = s.decode('utf8')
|
||||||
else:
|
else:
|
||||||
u = chardet.universaldetector.UniversalDetector()
|
u = chardet.universaldetector.UniversalDetector()
|
||||||
|
Loading…
Reference in New Issue
Block a user