From ec295d1fbe33678186f39856f83109ba5e75b336 Mon Sep 17 00:00:00 2001 From: m0mchil Date: Fri, 11 Jul 2014 17:32:17 +0300 Subject: [PATCH] remove redundant i18n --- plugins/trezor.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/trezor.py b/plugins/trezor.py index b9c99932..46e6c1fc 100644 --- a/plugins/trezor.py +++ b/plugins/trezor.py @@ -288,8 +288,7 @@ class TrezorQtGuiMixin(object): def password_dialog(self, msg=None): if not msg: msg = _("Please enter your Trezor password") - else: - msg = _(msg) + d = QDialog() d.setModal(1) d.setLayout( make_password_dialog(d, None, msg, False) )