Correct variable name

This commit is contained in:
Lucas Noki 2019-12-30 02:07:37 +01:00 committed by Marcel Schwarz
parent 7bf711875b
commit 2cf7445593

View File

@ -45,7 +45,7 @@ class VimModule(AbstractModule):
"name": choice "name": choice
}) })
print("Available Plugins:") print("Available Plugins:")
module_selection = [ plugin_selection = [
{ {
'type': 'checkbox', 'type': 'checkbox',
'message': 'Select plugins', 'message': 'Select plugins',
@ -53,7 +53,7 @@ class VimModule(AbstractModule):
'choices': mapped_list 'choices': mapped_list
} }
] ]
selected_plugins = prompt(module_selection)['modules'] selected_plugins = prompt(plugin_selection)['modules']
print("\033[4mYour selection:\033[0m") print("\033[4mYour selection:\033[0m")
[print(x) for x in selected_plugins] [print(x) for x in selected_plugins]