Fix typo in grid plugin

This commit is contained in:
Kirill 2019-10-11 20:13:01 +03:00 committed by GitHub
parent 5ed2f2df78
commit 2cfaae1993
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