aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-14 22:16:39 +0000
committerGravatar jesopo2018-11-14 22:16:39 +0000
commit21b757dbb02b599bd9e10a5b8a6df1e07c9bc3f3 (patch)
tree58a18731c41933eaea1e91b3e9b7013958d1879f /modules
parentRemove a ") i should have removed before (diff)
signature
`IRCBuffer.add_notice` doesn't have an `action` param
Diffstat (limited to 'modules')
-rw-r--r--modules/line_handler.py2
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