summaryrefslogtreecommitdiff
path: root/testxml/testxml.py
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-09 02:20:45 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-09 02:20:45 +0300
commit9395c0850da2a764fcc150b4b23e1dbdf5e75758 (patch)
tree7b95eff1fb81e10a6c433e10fd54108856676ba6 /testxml/testxml.py
parentb42c21ee18b9e98a8073ba2df392c727095560b8 (diff)
downloadtools-9395c0850da2a764fcc150b4b23e1dbdf5e75758.tar.gz
tools-9395c0850da2a764fcc150b4b23e1dbdf5e75758.tar.bz2
tools-9395c0850da2a764fcc150b4b23e1dbdf5e75758.tar.xz
tools-9395c0850da2a764fcc150b4b23e1dbdf5e75758.zip
testxml: fix some typos.
Diffstat (limited to 'testxml/testxml.py')
-rwxr-xr-xtestxml/testxml.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testxml/testxml.py b/testxml/testxml.py
index 3752076..59e5b88 100755
--- a/testxml/testxml.py
+++ b/testxml/testxml.py
@@ -591,7 +591,7 @@ def testSpriteFile(id, fullPath, file, fileLoc, dnum, variant, checkAction, iser
try:
name = action.attributes["name"].value
except:
- showMsgSprite("no action name", iserr)
+ showMsgSprite(fileLoc, "no action name", iserr)
continue
try:
hp = action.attributes["hp"].value
@@ -1271,7 +1271,7 @@ def testTargetCursor(id, node, file):
try:
targetCursor = node.attributes["targetCursor"].value
if targetCursor != "small" and targetCursor != "medium" and targetCursor != "large":
- showMsgFile(id, "unknown target cursor " + targetCursor)
+ showMsgFile(id, "unknown target cursor " + targetCursor, True)
except:
None