diff options
Diffstat (limited to 'lab/parser.py')
-rw-r--r-- | lab/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lab/parser.py b/lab/parser.py index 4deb93e9..0393d209 100644 --- a/lab/parser.py +++ b/lab/parser.py @@ -167,7 +167,6 @@ class ParserMain(object): that line. """ - plus_ones = set() arc_chars = collections.defaultdict(str) for lfrom, lto in sorted(arcs): @@ -178,6 +177,7 @@ class ParserMain(object): else: if lfrom == lto - 1: plus_ones.add(lfrom) + arc_chars[lfrom] += "" # ensure this line is in arc_chars continue if lfrom < lto: l1, l2 = lfrom, lto |