From 06affc3bd109dedb875a5cc809030745336b6fcb Mon Sep 17 00:00:00 2001 From: Alan Mason <1923621+2Shirt@users.noreply.github.com> Date: Fri, 1 Dec 2017 12:26:37 -0800 Subject: [PATCH] Bugfix: menu_tools() --- Scripts/functions/winpe_menus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/functions/winpe_menus.py b/Scripts/functions/winpe_menus.py index c6ba4e8c..f34376ae 100644 --- a/Scripts/functions/winpe_menus.py +++ b/Scripts/functions/winpe_menus.py @@ -321,7 +321,7 @@ def menu_setup(): pause('\nPress Enter to return to main menu... ') def menu_tools(): - tools = [k for k in sorted(PE_TOOLS.keys())] + tools = [{'Name': k} for k in sorted(PE_TOOLS.keys())] actions = [{'Name': 'Main Menu', 'Letter': 'M'},] set_title(KIT_NAME_FULL)