diff options
| author | 2019-03-06 14:30:33 +0000 | |
|---|---|---|
| committer | 2019-03-06 14:30:33 +0000 | |
| commit | ed3fc0e5d4c964dfe606726365183ccc51ccade3 (patch) | |
| tree | bd3613dc16bc1a777e4ee6c8b8b77fa7cf275607 /modules/print_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/print_activity.py')
| -rw-r--r-- | modules/print_activity.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/print_activity.py b/modules/print_activity.py index def260db..7f0d3777 100644 --- a/modules/print_activity.py +++ b/modules/print_activity.py @@ -19,4 +19,5 @@ class Module(ModuleManager.BaseModule): @utils.hook("formatted.motd") def formatted(self, event): self.bot.log.info("%s%s | %s", [ - str(event["server"]), event["context"] or "", event["line"]]) + str(event["server"]), event["context"] or "", + utils.irc.parse_format(event["line"])]) |
