From a4a0082c173db460b06b6f53a967e26f114b6c82 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 22 Jan 2016 20:13:22 +0000 Subject: [PATCH] Later: use .tag() to set tags, as there is no IrcMsg.__setattr__. --- plugins/Later/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Later/plugin.py b/plugins/Later/plugin.py index babfe845e..5474136dd 100644 --- a/plugins/Later/plugin.py +++ b/plugins/Later/plugin.py @@ -259,7 +259,7 @@ class Later(callbacks.Plugin): s = self._formatNote(when, whence, note) irc.reply(s, private=private, prefixNick=not private) self._flushNotes() - msg.repliedTo = old_repliedto + msg.tag('repliedTo', old_repliedto) def _formatNote(self, when, whence, note): return _('Sent %s: <%s> %s') % (self._timestamp(when), whence, note)