mirror of https://github.com/openXC7/prjxray.git
Report bad line when reading segbits.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
parent
4e4bcae418
commit
69d40a054e
|
|
@ -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:]]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue