Browse Source

Follow-up 3c505660a6: One search/replace too much

master
Johann Bauer 8 years ago
parent
commit
895bd019fb
  1. 2
      plugins/digitalbitbox/digitalbitbox.py

2
plugins/digitalbitbox/digitalbitbox.py

@ -370,7 +370,7 @@ class DigitalBitbox_Client():
else: else:
self.hid_send_frame(msg) self.hid_send_frame(msg)
r = self.hid_read_frame() r = self.hid_read_frame()
r = r.rstrip(b' \t\n\0') r = r.rstrip(b' \t\r\n\0')
r = r.replace(b"\0", b'') r = r.replace(b"\0", b'')
r = to_string(r, 'utf8') r = to_string(r, 'utf8')
reply = json.loads(r) reply = json.loads(r)

Loading…
Cancel
Save