mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-02 15:44:06 +01:00
Changed from being globally threaded to just threading the email command.
This commit is contained in:
parent
f5ec8f1467
commit
8a322cfddf
@ -237,7 +237,6 @@ buildings = {
|
||||
}
|
||||
|
||||
class OSU(callbacks.Privmsg):
|
||||
threaded = True
|
||||
def email(self, irc, msg, args):
|
||||
"""<first name> <middle initial> <last name>
|
||||
|
||||
@ -261,6 +260,7 @@ class OSU(callbacks.Privmsg):
|
||||
irc.reply('Possible matches: %s' % ', '.join(emails))
|
||||
except Exception, e:
|
||||
irc.error(utils.exnToString(e))
|
||||
email = privmsgs.thread(email)
|
||||
|
||||
def building(self, irc, msg, args):
|
||||
"""<building abbreviation>
|
||||
|
Loading…
Reference in New Issue
Block a user