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