tfollow-up prev: bad idea to eval translated string - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 0e6160bf2d66a0590df034c426d88ffa68bf9af3 DIR parent b68729115aed62651da1f83c1106d5f24963a993 HTML 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: M electrum/gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py t@@ -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())