From 49125fc3d26b115fabb5cf145bf670da77ecd767 Mon Sep 17 00:00:00 2001 From: Dave Arter Date: Mon, 10 Sep 2018 13:36:12 +0100 Subject: [PATCH] Fix badge store app installation when custom apps are present MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #85. See also #57, though doesn’t fix ‘update all apps’ functionality. --- 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 0fa0a47..8a16d80 100644 --- a/badge_store/main.py +++ b/badge_store/main.py @@ -59,7 +59,7 @@ def show_app(a): if install: with WaitingMessage(title="Installing %s" % a, text="Please wait...") as message: - installers = store.install(_get_current_apps() + [a]) + installers = store.install([a]) n = len(installers) for i, installer in enumerate(installers): message.text = "%s (%s/%s)" % (installer.path, i + 1, n)