1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-15 01:40:57 +00:00

fix str+bool concat

This commit is contained in:
Pavol Rusnak 2014-06-13 19:24:53 +02:00
parent da329ce24a
commit 1d84a35095

View File

@ -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()