diff --git a/plugins/Topic.py b/plugins/Topic.py index a4f05ddd0..a89c8696b 100644 --- a/plugins/Topic.py +++ b/plugins/Topic.py @@ -178,7 +178,7 @@ class Topic(callbacks.Privmsg): username = msg.nick if name != username and \ not ircdb.checkCapabilities(msg.prefix, ('op', 'admin')): - irc.error('You can only remove your own topics.') + irc.error(msg, 'You can only remove your own topics.') return newTopic = self.topicSeparator.join(topics) irc.queueMsg(ircmsgs.topic(channel, newTopic))