diff options
author | Bryan Bishop <kanzure@gmail.com> | 2016-08-27 12:26:57 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2016-08-27 12:26:57 -0500 |
commit | 92e1ef72d91b58cb8284806a44e1f2b56c205098 (patch) | |
tree | 2dc8b870a539b70ea3ce925c424a824fed2f052c /pokemontools/labels.py | |
parent | 0e1798937a4bf723813574281d0dc12c471c9199 (diff) |
fix many failing tests
Diffstat (limited to 'pokemontools/labels.py')
-rw-r--r-- | pokemontools/labels.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pokemontools/labels.py b/pokemontools/labels.py index 59a6160..69be4b1 100644 --- a/pokemontools/labels.py +++ b/pokemontools/labels.py @@ -191,6 +191,8 @@ def line_has_label(line): return False if line[0] == "\"": return False + if line[0] == ":": + return False return True def get_label_from_line(line): |