From 7316522b0eec8b2c5476f5d925efce6843d4c52d Mon Sep 17 00:00:00 2001 From: Matthew Stratford Date: Sat, 15 Sep 2018 16:01:31 +0100 Subject: [PATCH] Give updating dialog a nice title --- badge_store/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/badge_store/main.py b/badge_store/main.py index 5708631..5c158c1 100644 --- a/badge_store/main.py +++ b/badge_store/main.py @@ -90,7 +90,7 @@ def show_update(): update = prompt_boolean("Do you want to update all apps on this badge?", title="Update all Apps", true_text="OK", false_text="Back") if update: clear() - with WaitingMessage(title=title, text="Getting updates...") as message: + with WaitingMessage(title="Updating Apps...", text="Getting updates...") as message: update_text = "Downloading files:" installers = store.install(_get_current_apps()) n = len(installers)