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

View File

@ -54,7 +54,7 @@ def is_excluded(what):
for skip in OPTIONS['exclude']: for skip in OPTIONS['exclude']:
skip = skip.lower() skip = skip.lower()
what = what.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 True
return False return False