mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-08-28 04:46:34 -04:00
Fixed attempting to install extensions resulting in an error
Former-commit-id: 821b770fdcea74c51b4077c2c956060340827b81 Former-commit-id: 5ca345ef9391b834d7b6d276ec2ff552a3bf942b
This commit is contained in:
+1
-1
@@ -370,7 +370,7 @@ def extension_downloader():
|
||||
_choice = curses_radio(_extensions, 'select an extension for more info')
|
||||
if _choice == len(_extensions)-1:
|
||||
return False, False
|
||||
_selected = _extensions[_choice-1]
|
||||
_selected = _extensions[_choice]
|
||||
_choice = curses_radio(('no', 'yes'), f"install {_selected}?\n\n\n\n\ndescription: "
|
||||
f"{_pointer.get(_selected, 'desc')}\n\nusage: "
|
||||
f"{_pointer.get(_selected, 'usage')}")
|
||||
|
||||
Reference in New Issue
Block a user