summaryrefslogtreecommitdiff
path: root/testxml
diff options
context:
space:
mode:
Diffstat (limited to 'testxml')
-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