Wed, 21 Nov 2018 19:26:59 +0100
Utilities: fixed an issue related to a forgotten conversion of str to bytes.
Utilities/__init__.py | file | annotate | diff | comparison | revisions |
--- a/Utilities/__init__.py Sat Nov 17 19:37:46 2018 +0100 +++ b/Utilities/__init__.py Wed Nov 21 19:26:59 2018 +0100 @@ -408,7 +408,7 @@ index = 0 while index < len(text): if text[index] == "\\": - qb = QByteArray.fromHex(text[index:index + 4]) + qb = QByteArray.fromHex(text[index:index + 4].encode()) buf += bytes(qb) index += 4 else: