aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-07-15 23:55:21 +0100
committerGravatar jesopo2018-07-15 23:55:21 +0100
commit2b30ffc71b9b9181f8de81f315a1aec7c2e5c9cc (patch)
tree3442a1e84863e4883b119b9d2cef2eb02dce8296 /modules
parentcheck if a channel is in attempted_join before attempting rejoin (diff)
signature
fix print_activity still using old EventManager priority location
Diffstat (limited to 'modules')
-rw-r--r--modules/print_activity.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/print_activity.py b/modules/print_activity.py
index 58dcbcf9..0a3d3c53 100644
--- a/modules/print_activity.py
+++ b/modules/print_activity.py
@@ -6,8 +6,7 @@ class Module(object):
self.bot = bot
bot.events.on("received").on("message").on("channel").hook(
- self.channel_message,
- priority=EventManager.EventCallback.PRIORITY_HIGH)
+ self.channel_message, priority=EventManager.PRIORITY_HIGH)
bot.events.on("self").on("message").on("channel").hook(
self.self_channel_message)