diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-09 02:20:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-09 02:20:45 +0300 |
commit | 9395c0850da2a764fcc150b4b23e1dbdf5e75758 (patch) | |
tree | 7b95eff1fb81e10a6c433e10fd54108856676ba6 /testxml | |
parent | b42c21ee18b9e98a8073ba2df392c727095560b8 (diff) | |
download | evol-tools-9395c0850da2a764fcc150b4b23e1dbdf5e75758.tar.gz evol-tools-9395c0850da2a764fcc150b4b23e1dbdf5e75758.tar.bz2 evol-tools-9395c0850da2a764fcc150b4b23e1dbdf5e75758.tar.xz evol-tools-9395c0850da2a764fcc150b4b23e1dbdf5e75758.zip |
testxml: fix some typos.
Diffstat (limited to 'testxml')
-rwxr-xr-x | testxml/testxml.py | 4 |
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 |