diff options
| author | 2019-03-06 15:04:04 +0000 | |
|---|---|---|
| committer | 2019-03-06 15:04:19 +0000 | |
| commit | fb5b956f99cce7c105b26d9d05b42bab26625f4c (patch) | |
| tree | 66783e7fbb4562cf1c2db26f37c09c5afca82bc7 /modules/format_activity.py | |
| parent | don't utils.irc.parse_format in format_activity.py, so we don't have to use (diff) | |
| signature | ||
Send IRCChannel on formatted.topic-timestamp event
Diffstat (limited to 'modules/format_activity.py')
| -rw-r--r-- | modules/format_activity.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/format_activity.py b/modules/format_activity.py index 44e718e4..ac78ab4f 100644 --- a/modules/format_activity.py +++ b/modules/format_activity.py @@ -141,7 +141,7 @@ class Module(ModuleManager.BaseModule): dt = datetime.datetime.strftime(unix_dt, utils.ISO8601_PARSE) line = "topic set at %s" % dt self._event("topic-timestamp", event["server"], line, - event["channel"].name) + event["channel"].name, channel=event["channel"]) def _on_kick(self, event, nickname): reason = "" |
