From 81a6a1a6d2f1ed62d12093ddb469cfbc3ac2ee19 Mon Sep 17 00:00:00 2001 From: Liz Fong-Jones Date: Mon, 11 Aug 2014 19:25:36 -0400 Subject: [PATCH] Fix missing %s in format string --- trezorlib/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trezorlib/client.py b/trezorlib/client.py index e6fbceafc..5eba3e734 100644 --- a/trezorlib/client.py +++ b/trezorlib/client.py @@ -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