Skip to content

Commit f6075a5

Browse files
committed
follow-up ba3783f
1 parent 4714fdf commit f6075a5

File tree

1 file changed

+2
-3
lines changed
  • electrum/plugins/trustedcoin

1 file changed

+2
-3
lines changed

electrum/plugins/trustedcoin/qt.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -563,10 +563,9 @@ def __init__(self, parent, wizard):
563563
'or do you want to disable it, and have two master private keys in your wallet?'
564564
])
565565
choices = [
566-
('keep', _('Keep')),
567-
('disable', _('Disable')),
566+
ChoiceItem(key='keep', label=_('Keep')),
567+
ChoiceItem(key='disable', label=_('Disable')),
568568
]
569-
570569
self.choice_w = ChoiceWidget(message=message, choices=choices)
571570
self.layout().addWidget(self.choice_w)
572571
self.layout().addStretch(1)

0 commit comments

Comments
 (0)