fix print_activity still using old EventManager priority location

This commit is contained in:
jesopo 2018-07-15 23:55:21 +01:00
parent f84a05aec5
commit 2b30ffc71b

View file

@ -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)