diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-07-24 16:03:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-07-24 16:03:49 +0300 |
commit | cbd39dcf3aa78deee708bb15b30e90af6fe09211 (patch) | |
tree | e2490c7703c1345b8db1f05ea60a85083199a0b9 /testxml | |
parent | d615b3a433d4cab9e9ff15d4cb3bead4674c12f8 (diff) | |
download | evol-tools-cbd39dcf3aa78deee708bb15b30e90af6fe09211.tar.gz evol-tools-cbd39dcf3aa78deee708bb15b30e90af6fe09211.tar.bz2 evol-tools-cbd39dcf3aa78deee708bb15b30e90af6fe09211.tar.xz evol-tools-cbd39dcf3aa78deee708bb15b30e90af6fe09211.zip |
testxml: dont show errors for empty default animation tag.
Diffstat (limited to 'testxml')
-rwxr-xr-x | testxml/testxml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testxml/testxml.py b/testxml/testxml.py index 2037a66..7cec764 100755 --- a/testxml/testxml.py +++ b/testxml/testxml.py @@ -644,7 +644,7 @@ def testSpriteAction(file, name, action, numframes, iserr): if label == "" or label is None: showMsgSprite(file, "no label attribute in goto tag " + name, iserr) - if cnt == 0: + if cnt == 0 and name != "default": showMsgSprite(file, "no frames or sequences in action: " + name, iserr) if "default" not in aniset: |