From 16dccc1df7014ed76f42b8219bbf78e028c0d140 Mon Sep 17 00:00:00 2001 From: Michael Chenevey Date: Thu, 18 Oct 2018 12:30:11 -0400 Subject: [PATCH] increased write timeout from 5000 ms to 15000 ms --- brother_ql/backends/pyusb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brother_ql/backends/pyusb.py b/brother_ql/backends/pyusb.py index d0fd41d..3217b75 100755 --- a/brother_ql/backends/pyusb.py +++ b/brother_ql/backends/pyusb.py @@ -67,7 +67,7 @@ def __init__(self, device_specifier): self.dev = None self.read_timeout = 10. # ms - self.write_timeout = 5000. # ms + self.write_timeout = 15000. # ms # strategy : try_twice or select self.strategy = 'try_twice' if isinstance(device_specifier, str):