mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-01 01:35:20 +00:00
parent
ec5f406f49
commit
74f6ac27af
1 changed files with 3 additions and 1 deletions
|
@ -283,7 +283,9 @@ class BaseWizard(object):
|
||||||
for name, info in devices:
|
for name, info in devices:
|
||||||
state = _("initialized") if info.initialized else _("wiped")
|
state = _("initialized") if info.initialized else _("wiped")
|
||||||
label = info.label or _("An unnamed {}").format(name)
|
label = info.label or _("An unnamed {}").format(name)
|
||||||
descr = f"{label} [{name}, {state}, {info.device.transport_ui_string}]"
|
try: transport_str = info.device.transport_ui_string[:20]
|
||||||
|
except: transport_str = 'unknown transport'
|
||||||
|
descr = f"{label} [{name}, {state}, {transport_str}]"
|
||||||
choices.append(((name, info), descr))
|
choices.append(((name, info), descr))
|
||||||
msg = _('Select a device') + ':'
|
msg = _('Select a device') + ':'
|
||||||
self.choice_dialog(title=title, message=msg, choices=choices, run_next= lambda *args: self.on_device(*args, purpose=purpose))
|
self.choice_dialog(title=title, message=msg, choices=choices, run_next= lambda *args: self.on_device(*args, purpose=purpose))
|
||||||
|
|
Loading…
Add table
Reference in a new issue