electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 0e6160bf2d66a0590df034c426d88ffa68bf9af3
parent b68729115aed62651da1f83c1106d5f24963a993
Author: SomberNight <somber.night@protonmail.com>
Date:   Tue, 23 Oct 2018 03:01:23 +0200

follow-up prev: bad idea to eval translated string

Diffstat:
Melectrum/gui/qt/main_window.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py @@ -2111,7 +2111,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): if len(mpk_list) > 1: def label(key): if isinstance(self.wallet, Multisig_Wallet): - return f'{_("cosigner")} {key+1} ( keystore: {keystore_types[key]} )' + return _("cosigner") + f' {key+1} ( keystore: {keystore_types[key]} )' return '' labels = [label(i) for i in range(len(mpk_list))] on_click = lambda clayout: show_mpk(clayout.selected_index())