_compat: Make the encoding argument explicit in to_unicode_str().

This commit is contained in:
Damir Jelić 2019-06-20 12:24:08 +02:00
parent 7538a1eccf
commit c4d703ac3d

View file

@ -64,4 +64,4 @@ def to_unicode_str(byte_string, errors="replace"):
Returns the decoded native string.
"""
return byte_string.decode(errors=errors)
return byte_string.decode(encoding="utf-8", errors=errors)