Commit c4d703ac authored by poljar's avatar poljar
Browse files

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

parent 7538a1ec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)