mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-15 19:08:07 +00:00
Fix missing %s in format string
This commit is contained in:
parent
dff60a0dd1
commit
81a6a1a6d2
@ -739,7 +739,7 @@ class ProtocolMixin(object):
|
||||
elif isinstance(resp, proto.Failure) and resp.code == types.Failure_FirmwareError:
|
||||
return False
|
||||
|
||||
raise Exception("Unexpected result " % resp)
|
||||
raise Exception("Unexpected result %s" % resp)
|
||||
|
||||
class TrezorClient(ProtocolMixin, TextUIMixin, BaseClient):
|
||||
pass
|
||||
|
Loading…
Reference in New Issue
Block a user