Report bad line when reading segbits.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2020-10-19 10:24:02 -07:00
parent 4e4bcae418
commit 69d40a054e
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ def read_segbits(f):
parts = l.split(' ')
assert len(parts) > 1
assert len(parts) > 1, l
segbits[parts[0]] = [parsebit(val) for val in parts[1:]]