commit 31739d01d79b77cdaf63a51dd2cd85a165759c10 parent aef7e4365ebc9b30abbe85d3c938e41fc0d120bc Author: ThomasV <thomasv@gitorious> Date: Fri, 17 Jul 2015 16:29:42 +0200 fix bug #1365 Diffstat:
M | plugins/trezor.py | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git 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()