Merge pull request #259 from python273/patch-1

Fix typo in grid plugin
This commit is contained in:
evilsocket 2019-10-11 19:22:23 +02:00 committed by GitHub
commit f73a695747
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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