summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtestxml/testxml.py8
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):