From cb78144e8dd6d77ac0a69a858529f6abdb579771 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Wed, 27 Apr 2011 13:33:08 +0300 Subject: [PATCH] print 'Illegal move combination.' --- pokedex/util/movesets.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pokedex/util/movesets.py b/pokedex/util/movesets.py index 33c2f40..1f7252f 100755 --- a/pokedex/util/movesets.py +++ b/pokedex/util/movesets.py @@ -1362,6 +1362,9 @@ def main(argv): print print 'Done' + if no_results: + print 'Illegal move combination.' + return (not no_results) if __name__ == '__main__':