From 31739d01d79b77cdaf63a51dd2cd85a165759c10 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 17 Jul 2015 16:29:42 +0200 Subject: [PATCH] fix bug #1365 --- plugins/trezor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/trezor.py b/plugins/trezor.py index a800e70d..e783898a 100644 --- a/plugins/trezor.py +++ b/plugins/trezor.py @@ -160,7 +160,8 @@ class Plugin(BasePlugin): return wallet = TrezorWallet(storage) self.wallet = wallet - passphrase = self.handler.get_passphrase(_("Please enter your Trezor passphrase.") + '\n' + _("Press OK if you do not use one.")) + handler = TrezorQtHandler(wizard) + passphrase = handler.get_passphrase(_("Please enter your Trezor passphrase.") + '\n' + _("Press OK if you do not use one.")) if passphrase is None: return password = wizard.password_dialog()