ledger: pass str to message dialog

This commit is contained in:
ThomasV 2017-03-02 08:42:49 +01:00
parent f9e948ebc1
commit ddcdbfa181
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class Ledger_Handler(QtHandlerBase):
try:
from .auth2fa import LedgerAuthDialog
except ImportError as e:
self.message_dialog(e)
self.message_dialog(str(e))
return
dialog = LedgerAuthDialog(self, data)
dialog.exec_()