This commit is contained in:
Jeremy Fincher 2004-10-19 02:57:40 +00:00
parent 4566c1bfca
commit e826ebde49

View File

@ -42,7 +42,7 @@ import re
import supybot.dbi as dbi import supybot.dbi as dbi
import supybot.conf as conf import supybot.conf as conf
import supybot.utils as utils import supybot.utils as utils
from supybot.commands import wrap 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.webutils as webutils import supybot.webutils as webutils
@ -202,13 +202,10 @@ class URL(callbacks.PrivmsgCommandAndRegexp):
# We should optimize this with another URLDB method eventually. # We should optimize this with another URLDB method eventually.
s = urls[0] s = urls[0]
irc.reply(s) irc.reply(s)
last = wrap(last, ['channeldb'], getopts={'from': 'text', last = wrap(last, ['channeldb',
'with': 'text', getopts({'from': 'text', 'with': 'text',
'near': 'text', 'near': 'text', 'proto': 'text',
'proto': 'text', 'nolimit': '', 'without': 'text',})])
'nolimit': '',
'without': 'text',})
Class = URL Class = URL