1
0

hardware cmdline handler: print messages to stderr (take 2)

follow-up 5613f9b903

button_request should not call show_error as error dialogs in Qt block
the GUI thread.
This commit is contained in:
SomberNight
2019-01-29 17:25:02 +01:00
parent 0429fe5960
commit 27299092df
2 changed files with 9 additions and 9 deletions

View File

@@ -224,7 +224,7 @@ class TrezorClientBase(PrintError):
def button_request(self, code):
message = self.msg or MESSAGES.get(code) or MESSAGES['default']
self.handler.show_error(message.format(self.device), self.client.cancel)
self.handler.show_message(message.format(self.device), self.client.cancel)
def get_pin(self, code=None):
if code == 2: