From 375486f9d06130d76ae1014c38a79973ed639301 Mon Sep 17 00:00:00 2001 From: Simone Margaritelli Date: Sun, 20 Oct 2019 21:20:55 +0200 Subject: [PATCH] misc: small fix or general refactoring i did not bother commenting --- pwnagotchi/plugins/default/auto-update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/plugins/default/auto-update.py b/pwnagotchi/plugins/default/auto-update.py index 735b4920..af340e15 100644 --- a/pwnagotchi/plugins/default/auto-update.py +++ b/pwnagotchi/plugins/default/auto-update.py @@ -118,7 +118,7 @@ def install(display, update): download_and_unzip(name, path, display, update) source_path = os.path.join(path, name) - if not verify(name, path, source_path, update): + if not verify(name, path, source_path, display, update): return False logging.info("[update] installing %s ..." % name)