logs: ignore cases on hellgex
This commit is contained in:
parent
a3514c3f9a
commit
e6f7143405
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class Logs(Cog):
|
||||||
"nut", "doge", "cdnsp"] # cdn dlers/dumpers
|
"nut", "doge", "cdnsp"] # cdn dlers/dumpers
|
||||||
susp_hellgex = "|".join([r"\W*".join(list(word)) for
|
susp_hellgex = "|".join([r"\W*".join(list(word)) for
|
||||||
word in self.susp_words])
|
word in self.susp_words])
|
||||||
self.susp_hellgex = re.compile(susp_hellgex)
|
self.susp_hellgex = re.compile(susp_hellgex, re.IGNORECASE)
|
||||||
|
|
||||||
self.ok_words = ["nspwn", "hblnsp", "exefs"]
|
self.ok_words = ["nspwn", "hblnsp", "exefs"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue