mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-25 20:29:23 +01:00
Remove some unused names
This commit is contained in:
parent
e740953068
commit
4d2efc65ef
@ -95,7 +95,6 @@ class AdminTestCase(PluginTestCase):
|
|||||||
self.assertEqual(m.args[1], 'key')
|
self.assertEqual(m.args[1], 'key')
|
||||||
|
|
||||||
def testNick(self):
|
def testNick(self):
|
||||||
original = conf.supybot.nick()
|
|
||||||
try:
|
try:
|
||||||
m = self.getMsg('nick foobar')
|
m = self.getMsg('nick foobar')
|
||||||
self.assertEqual(m.command, 'NICK')
|
self.assertEqual(m.command, 'NICK')
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
import supybot.conf as conf
|
import supybot.conf as conf
|
||||||
import supybot.ircutils as ircutils
|
import supybot.ircutils as ircutils
|
||||||
import supybot.registry as registry
|
import supybot.registry as registry
|
||||||
from supybot.i18n import PluginInternationalization, internationalizeDocstring
|
from supybot.i18n import PluginInternationalization
|
||||||
_ = PluginInternationalization('Services')
|
_ = PluginInternationalization('Services')
|
||||||
|
|
||||||
def registerNick(nick, password=''):
|
def registerNick(nick, password=''):
|
||||||
@ -44,7 +44,7 @@ def registerNick(nick, password=''):
|
|||||||
v.setValue(password)
|
v.setValue(password)
|
||||||
|
|
||||||
def configure(advanced):
|
def configure(advanced):
|
||||||
from supybot.questions import expect, anything, something, yn, getpass
|
from supybot.questions import something
|
||||||
conf.registerPlugin('Services', True)
|
conf.registerPlugin('Services', True)
|
||||||
nick = something(_('What is your registered nick?'))
|
nick = something(_('What is your registered nick?'))
|
||||||
password = something(_('What is your password for that nick?'))
|
password = something(_('What is your password for that nick?'))
|
||||||
|
@ -38,7 +38,6 @@ import supybot.utils as utils
|
|||||||
from supybot.commands import *
|
from supybot.commands import *
|
||||||
import supybot.ircmsgs as ircmsgs
|
import supybot.ircmsgs as ircmsgs
|
||||||
import supybot.ircutils as ircutils
|
import supybot.ircutils as ircutils
|
||||||
import supybot.schedule as schedule
|
|
||||||
import supybot.callbacks as callbacks
|
import supybot.callbacks as callbacks
|
||||||
from supybot.i18n import PluginInternationalization, internationalizeDocstring
|
from supybot.i18n import PluginInternationalization, internationalizeDocstring
|
||||||
_ = PluginInternationalization('Services')
|
_ = PluginInternationalization('Services')
|
||||||
|
@ -1564,7 +1564,6 @@ class Irc(IrcCommandDispatcher, log.Firewalled):
|
|||||||
received* tags."""
|
received* tags."""
|
||||||
if tag:
|
if tag:
|
||||||
self._tagMsg(msg)
|
self._tagMsg(msg)
|
||||||
channel = msg.channel
|
|
||||||
|
|
||||||
preInFilter = str(msg).rstrip('\r\n')
|
preInFilter = str(msg).rstrip('\r\n')
|
||||||
log.debug('Incoming message (%s): %s', self.network, preInFilter)
|
log.debug('Incoming message (%s): %s', self.network, preInFilter)
|
||||||
|
Loading…
Reference in New Issue
Block a user