diff --git a/src/OwnerCommands.py b/src/OwnerCommands.py index 607c98748..f18faa28b 100644 --- a/src/OwnerCommands.py +++ b/src/OwnerCommands.py @@ -336,14 +336,6 @@ class OwnerCommands(privmsgs.CapabilityCheckingPrivmsg): ircdb.channels.reload() irc.reply(msg, conf.replySuccess) - def say(self, irc, msg, args): - """ - - Says in - """ - (channel, text) = privmsgs.getArgs(args, needed=2) - irc.queueMsg(ircmsgs.privmsg(channel, text)) - def connect(self, irc, msg, args): """ [] diff --git a/test/test_OwnerCommands.py b/test/test_OwnerCommands.py index d66c1edb4..13a9c7fbd 100644 --- a/test/test_OwnerCommands.py +++ b/test/test_OwnerCommands.py @@ -96,9 +96,6 @@ class OwnerCommandsTestCase(PluginTestCase, PluginDocumentation): self.assertNotError('unload MiscCommands') self.assertError('unload MiscCommands') - def testSay(self): - self.assertResponse('say %s foo' % self.irc.nick, 'foo') - def testSetconf(self): try: originalConfAllowEval = conf.allowEval