mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
ledger: ImportError fallback
This commit is contained in:
parent
da7e48f3a7
commit
83a422988e
1 changed files with 5 additions and 2 deletions
|
@ -11,8 +11,6 @@ from electrum_gui.qt.util import *
|
|||
|
||||
from btchip.btchipPersoWizard import StartBTChipPersoDialog
|
||||
|
||||
from .auth2fa import LedgerAuthDialog
|
||||
|
||||
class Plugin(LedgerPlugin, QtPluginBase):
|
||||
icon_unpaired = ":icons/ledger_unpaired.png"
|
||||
icon_paired = ":icons/ledger.png"
|
||||
|
@ -46,6 +44,11 @@ class Ledger_Handler(QtHandlerBase):
|
|||
dialog.show()
|
||||
|
||||
def auth_dialog(self, data):
|
||||
try:
|
||||
from .auth2fa import LedgerAuthDialog
|
||||
except ImportError as e:
|
||||
self.message_dialog(e)
|
||||
return
|
||||
dialog = LedgerAuthDialog(self, data)
|
||||
dialog.exec_()
|
||||
self.word = dialog.pin
|
||||
|
|
Loading…
Add table
Reference in a new issue