Fixed attempting to install extensions resulting in an error

Former-commit-id: 821b770fdcea74c51b4077c2c956060340827b81
Former-commit-id: 5ca345ef9391b834d7b6d276ec2ff552a3bf942b
This commit is contained in:
2023-07-07 10:26:13 -04:00
parent 488b94e638
commit 3347c425d9
+1 -1
View File
@@ -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')}")