diff options
author | Fedja Beader <fedja@protonmail.ch> | 2024-10-15 21:58:33 +0200 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-10-15 21:58:33 +0200 |
commit | 3acf188d5b65c742d0b12d4d49c4f128e100d0ea (patch) | |
tree | 81c6552660bb02664cf90f4dbf540f69a70d9159 | |
parent | af4547c5670128995f9773a60c8030ccaa019281 (diff) | |
download | tools-testxml_py3.tar.gz tools-testxml_py3.tar.bz2 tools-testxml_py3.tar.xz tools-testxml_py3.zip |
All py3 strings are already utf8testxml_py3
..or so I was told.
Fix b'warn: file=maps/001-2.tmx empty tile in lower layers (125, 34),
(126, 34), (124, 34), (127, 34)'
(the b' prefix and ' suffix on printing)
-rwxr-xr-x | testxml/testxml.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/testxml/testxml.py b/testxml/testxml.py index befa3cf..b30e1b1 100755 --- a/testxml/testxml.py +++ b/testxml/testxml.py @@ -66,24 +66,18 @@ class Layer: def printErr(err): errDict.add(err) - print(err.encode("utf-8")) + print(err) def showFileErrorById(id, rootDir, fileDir): - rootDir = rootDir.encode("utf-8") - fileDir = fileDir.encode("utf-8") print("error: id=" + id + ", file not found: " + fileDir + " (" + rootDir + fileDir + ")") def showFileWarningById(id, rootDir, fileDir): - rootDir = rootDir.encode("utf-8") - fileDir = fileDir.encode("utf-8") print("warn: id=" + id + ", file not found: " + fileDir + " (" + rootDir + fileDir + ")") def showError(id, text): - text = text.encode("utf-8") print("error: id=" + id + " " + text) def showWarning(id, text): - text = text.encode("utf-8") print("warn: id=" + id + " " + text) def showMsg(id, text, src, iserr): |