diff options
author | Bryan Bishop <kanzure@gmail.com> | 2016-08-27 18:58:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-27 18:58:05 -0500 |
commit | 74c620d01ad59bfb09cf4111ace549b925fcb9ab (patch) | |
tree | 2dc8b870a539b70ea3ce925c424a824fed2f052c /pokemontools/labels.py | |
parent | 0e1798937a4bf723813574281d0dc12c471c9199 (diff) | |
parent | 92e1ef72d91b58cb8284806a44e1f2b56c205098 (diff) |
Merge pull request #104 from pret/make-tests-mostly-work
Make tests mostly work
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): |