Ignore empty input lines rather than trying to find a barcode to match them

master
Sebastian Pipping 13 years ago
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…
Cancel
Save