Ben Kurtovic před 8 roky
rodič
revize
29d9c80274
1 změnil soubory, kde provedl 6 přidání a 2 odebrání
  1. +6
    -2
      earwigbot/managers.py

+ 6
- 2
earwigbot/managers.py Zobrazit soubor

@@ -225,8 +225,12 @@ class CommandManager(_ResourceManager):
.. note::
The special ``rc`` hook actually passes a :class:`~.RC` object.
"""
if data.chan in self.bot.config.irc["frontend"].get("quiet", []):
return
try:
if data.chan in self.bot.config.irc["frontend"]["quiet"]:
return
except KeyError:
pass

for command in self:
if hook in command.hooks and self._wrap_check(command, data):
thread = Thread(target=self._wrap_process,


Načítá se…
Zrušit
Uložit