diff options
| author | 2019-03-06 14:30:33 +0000 | |
|---|---|---|
| committer | 2019-03-06 14:30:33 +0000 | |
| commit | ed3fc0e5d4c964dfe606726365183ccc51ccade3 (patch) | |
| tree | bd3613dc16bc1a777e4ee6c8b8b77fa7cf275607 /modules/format_activity.py | |
| parent | Expose 'log' channel setting to !channelset (diff) | |
| signature | ||
don't utils.irc.parse_format in format_activity.py, so we don't have to use
raw_line in channel_log
Diffstat (limited to 'modules/format_activity.py')
| -rw-r--r-- | modules/format_activity.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/format_activity.py b/modules/format_activity.py index 921b0a98..44e718e4 100644 --- a/modules/format_activity.py +++ b/modules/format_activity.py @@ -4,8 +4,7 @@ from src import EventManager, ModuleManager, utils class Module(ModuleManager.BaseModule): def _event(self, type, server, line, context, channel=None, user=None): self.events.on("formatted").on(type).call(server=server, - context=context, line=utils.irc.parse_format(line), raw_line=line, - channel=channel, user=user) + context=context, line=line, channel=channel, user=user) def _mode_symbols(self, user, channel, server): modes = channel.get_user_status(user) |
