mirror of https://github.com/nealey/firebot
Fix special case of INVITE command, enhance stock ticker regexp
This commit is contained in:
parent
08802c0c55
commit
89368a8aae
|
@ -329,7 +329,7 @@ class FireBot(infobot.InfoBot, procbot.ProcBot):
|
||||||
symbol = match.group('symbol')
|
symbol = match.group('symbol')
|
||||||
WebRetriever('http://download.finance.yahoo.com/d/quotes.csv?s=%s&f=sl1d1t1c1ohgvj1pp2owern&e=.csv' % symbol,
|
WebRetriever('http://download.finance.yahoo.com/d/quotes.csv?s=%s&f=sl1d1t1c1ohgvj1pp2owern&e=.csv' % symbol,
|
||||||
cb)
|
cb)
|
||||||
bindings.append((re.compile(r"^quote +(?P<symbol>[-.a-zA-Z]+)$"),
|
bindings.append((re.compile(r"^quote +(?P<symbol>[-^.a-zA-Z]+)$"),
|
||||||
quote))
|
quote))
|
||||||
|
|
||||||
def currency(self, sender, forum, addl, match):
|
def currency(self, sender, forum, addl, match):
|
||||||
|
|
5
irc.py
5
irc.py
|
@ -397,6 +397,11 @@ class SmartIRCHandler(IRCHandler):
|
||||||
sender = self.recipient(args[2])
|
sender = self.recipient(args[2])
|
||||||
addl = (unpack_nuhost(args)[0],)
|
addl = (unpack_nuhost(args)[0],)
|
||||||
elif op in ("INVITE",):
|
elif op in ("INVITE",):
|
||||||
|
# INVITE [u'pflarr!~pflarr@www.clanspum.net', u'INVITE', u'gallium', u'#mysterious']
|
||||||
|
# INVITE [u'pflarr!~pflarr@www.clanspum.net', u'INVITE', u'gallium'] #mysterious
|
||||||
|
if len(args) > 3:
|
||||||
|
forum = self.recipient(args[3])
|
||||||
|
else:
|
||||||
forum = self.recipient(text)
|
forum = self.recipient(text)
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue