Ignore empty input lines rather than trying to find a barcode to match them
This commit is contained in:
parent
7242261f16
commit
5fffd09053
|
@ -322,6 +322,7 @@ def main():
|
||||||
if not l:
|
if not l:
|
||||||
break
|
break
|
||||||
line = l.rstrip()
|
line = l.rstrip()
|
||||||
|
if line:
|
||||||
handle(line, status)
|
handle(line, status)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue