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

This commit is contained in:
Johann Bauer 2018-03-10 00:09:17 +01:00
parent 92a701b97a
commit 895bd019fb

View File

@ -370,7 +370,7 @@ class DigitalBitbox_Client():
else:
self.hid_send_frame(msg)
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 = to_string(r, 'utf8')
reply = json.loads(r)