From 2cfaae199365e135e96257119231a072dccf50ca Mon Sep 17 00:00:00 2001 From: Kirill Date: Fri, 11 Oct 2019 20:13:01 +0300 Subject: [PATCH] Fix typo in grid plugin --- pwnagotchi/plugins/default/grid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwnagotchi/plugins/default/grid.py b/pwnagotchi/plugins/default/grid.py index 2574d57..0dd76cc 100644 --- a/pwnagotchi/plugins/default/grid.py +++ b/pwnagotchi/plugins/default/grid.py @@ -54,7 +54,7 @@ def is_excluded(what): for skip in OPTIONS['exclude']: skip = skip.lower() what = what.lower() - if skip in what or skip.replace(':', ':') in what: + if skip in what or skip.replace(':', '') in what: return True return False