mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
fix #4084
This commit is contained in:
parent
084b1e86ef
commit
9372c31b5d
1 changed files with 1 additions and 1 deletions
|
@ -495,7 +495,7 @@ class DeviceMgr(ThreadJob, PrintError):
|
||||||
if info.label == keystore.label:
|
if info.label == keystore.label:
|
||||||
return info
|
return info
|
||||||
msg = _("Please select which {} device to use:").format(plugin.device)
|
msg = _("Please select which {} device to use:").format(plugin.device)
|
||||||
descriptions = [info.label + ' (%s)'%(_("initialized") if info.initialized else _("wiped")) for info in infos]
|
descriptions = [str(info.label) + ' (%s)'%(_("initialized") if info.initialized else _("wiped")) for info in infos]
|
||||||
c = handler.query_choice(msg, descriptions)
|
c = handler.query_choice(msg, descriptions)
|
||||||
if c is None:
|
if c is None:
|
||||||
raise UserCancelled()
|
raise UserCancelled()
|
||||||
|
|
Loading…
Add table
Reference in a new issue