mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 12:08:59 +00:00
Merge pull request #8 from lizthegrey/patch-1
Fix missing %s in format string
This commit is contained in:
commit
a2a5b6a460
@ -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