follow-up prev: bad idea to eval translated string

This commit is contained in:
SomberNight 2018-10-23 03:01:23 +02:00
parent b68729115a
commit 0e6160bf2d
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -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())