From 7aabcfd41dd68bb4ade9fb24f96da57c09e2e5e9 Mon Sep 17 00:00:00 2001 From: James Vega Date: Tue, 19 Aug 2003 01:20:56 +0000 Subject: [PATCH] Fixed a typo. prfix->prefix --- plugins/Topic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Topic.py b/plugins/Topic.py index 7a5669a80..cbc7fb482 100644 --- a/plugins/Topic.py +++ b/plugins/Topic.py @@ -152,7 +152,7 @@ class Topic(callbacks.Privmsg): irc.error(msg, conf.replyNoUser) return if name != senderName and \ - not ircdb.checkCapabilities(msg.prfix, ('op', 'admin')): + not ircdb.checkCapabilities(msg.prefix, ('op', 'admin')): irc.error(msg, 'You can only modify your own topics.') return newTopic = self.topicFormatter % (replacer(topic), name)