diff --git a/qlprint/__main__.py b/qlprint/__main__.py index 957cef7..d3db24a 100644 --- a/qlprint/__main__.py +++ b/qlprint/__main__.py @@ -43,14 +43,14 @@ def qlprint(): for file in sorted(glob.glob(f"{path}/{name}*.png"), key=lambda arg: int(os.path.splitext(os.path.basename(arg))[0].split("-")[1])): for i in range(args.copies): print(f"Printing copy {i + 1} of {os.path.basename(file)}") - task = subprocess.Popen(["brother_ql", "-b", "pyusb", "-m", "QL-570", "-p", "usb://0x04f9:0x2028/J5Z416681", "print", "-l", "62", file], stdout=subprocess.PIPE, shell=True) + task = subprocess.Popen([f"brother_ql -b pyusb -m QL-570 -p usb://0x04f9:0x2028/J5Z416681 print -l 62 {file}"], stderr=subprocess.PIPE, shell=True) task.wait() - print(task.communicate()[0].decode().split("\n")) + stderr = task.stderr.read().decode().split("\n")[-2] if i + 1 == args.copies: - if task.communicate()[0].decode() == "INFO:brother_ql.backends.helpers:Printing was successful. Waiting for the next job.": + if stderr == "INFO:brother_ql.backends.helpers:Printing was successful. Waiting for the next job.": os.remove(file) if len(os.listdir(path)) == 0: - print("Removing temporary director") + print("Removing temporary directory") os.rmdir(path) def main():