diff options
| author | 2018-11-14 22:16:39 +0000 | |
|---|---|---|
| committer | 2018-11-14 22:16:39 +0000 | |
| commit | 21b757dbb02b599bd9e10a5b8a6df1e07c9bc3f3 (patch) | |
| tree | 58a18731c41933eaea1e91b3e9b7013958d1879f | |
| parent | Remove a ") i should have removed before (diff) | |
| signature | ||
`IRCBuffer.add_notice` doesn't have an `action` param
| -rw-r--r-- | modules/line_handler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/line_handler.py b/modules/line_handler.py index 510bff7f..7143b090 100644 --- a/modules/line_handler.py +++ b/modules/line_handler.py @@ -482,7 +482,7 @@ class Module(ModuleManager.BaseModule): else: # a notice we've sent to a user user = event["server"].get_user(target) - user.buffer.add_message(None, message, action, event["tags"], True) + user.buffer.add_message(None, message, event["tags"], True) self._event(event, "notice.private", user=user, **kwargs) # IRCv3 TAGMSG, used to send tags without any other information |
