From 649091766f28b20e7e1963c2de9444e3869f23ed Mon Sep 17 00:00:00 2001
From: Simone Margaritelli <evilsocket@gmail.com>
Date: Sun, 20 Oct 2019 20:47:52 +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 9e5be0e..f9e8d9e 100644
--- a/pwnagotchi/plugins/default/auto-update.py
+++ b/pwnagotchi/plugins/default/auto-update.py
@@ -82,7 +82,7 @@ def install(display, update):
 
     display.update(force=True, new_data={'status': 'Extracting %s ...' % name})
 
-    os.system('unzip "%s" -q -d "%s"' % (target_path, path))
+    os.system('unzip "%s" -d "%s"' % (target_path, path))
 
     source_path = os.path.join(path, name)
     checksums = glob.glob("%s/*.sha256" % path)