aboutsummaryrefslogtreecommitdiff
path: root/modules/ircv3_msgid.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-11-25 16:28:03 +0000
committerGravatar jesopo2019-11-25 16:28:03 +0000
commit4586bc790339eb4c28e5c7ec29618fedb7c87f85 (patch)
tree4d0c044c97ee0c23e8c2afc7b315f179c25be926 /modules/ircv3_msgid.py
parentslightly nicer format for weather output (diff)
signature
remove `tags` from StdOut objects - expose through event_kwargs
Diffstat (limited to 'modules/ircv3_msgid.py')
-rw-r--r--modules/ircv3_msgid.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ircv3_msgid.py b/modules/ircv3_msgid.py
index cbb207dc..f95f9fd4 100644
--- a/modules/ircv3_msgid.py
+++ b/modules/ircv3_msgid.py
@@ -27,5 +27,5 @@ class Module(ModuleManager.BaseModule):
def postprocess_command(self, event):
msgid = TAG.get_value(event["line"].tags)
if msgid:
- event["stdout"].tags["+draft/reply"] = msgid
- event["stderr"].tags["+draft/reply"] = msgid
+ event["tags"]["+draft/reply"] = msgid
+ event["tags"]["+draft/reply"] = msgid