From ab5461a1b44d374c26fde89079f4335e97246b0e Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Thu, 6 Jul 2017 19:19:02 +0200 Subject: [PATCH] Fix launching the installer --- esp32/modules/launcher.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/esp32/modules/launcher.py b/esp32/modules/launcher.py index 95ad4f10c..d064f55b7 100644 --- a/esp32/modules/launcher.py +++ b/esp32/modules/launcher.py @@ -26,11 +26,11 @@ except OSError: apps = [] +apps.extend(['installer']) + for app in apps: options.add_item(app) -options.add_item("installer") - def run_it(pushed): if (pushed): selected = options.selected_index()