From 1d84a3509545fd16d9d3063fda1e022ccd7810d7 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 13 Jun 2014 19:24:53 +0200 Subject: [PATCH] fix str+bool concat --- trezorlib/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trezorlib/client.py b/trezorlib/client.py index 6cf7e42884..dc7aff3516 100644 --- a/trezorlib/client.py +++ b/trezorlib/client.py @@ -266,7 +266,7 @@ class DebugLinkMixin(object): def callback_ButtonRequest(self, msg): log("ButtonRequest code: " + get_buttonrequest_value(msg.code)) - log("Pressing button " + self.button) + log("Pressing button " + str(self.button)) self.debug.press_button(self.button) return proto.ButtonAck()