From 425c51a9e9b108923d7d7068786fbd12991abf3d Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 31 Jan 2016 15:50:02 -0600 Subject: [PATCH] Fix config. --- earwigbot/managers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/earwigbot/managers.py b/earwigbot/managers.py index 9c51adf..fcf3b74 100644 --- a/earwigbot/managers.py +++ b/earwigbot/managers.py @@ -225,7 +225,7 @@ class CommandManager(_ResourceManager): .. note:: The special ``rc`` hook actually passes a :class:`~.RC` object. """ - if data.chan in self.bot.config.irc.get("quiet", []): + if data.chan in self.bot.config.irc["frontend"].get("quiet", []): return for command in self: if hook in command.hooks and self._wrap_check(command, data):