Made the output of osuemail a little bit cleaner.

This commit is contained in:
Jeremy Fincher 2003-08-24 20:58:11 +00:00
parent 30711266a7
commit 577e7517af
1 changed files with 5 additions and 3 deletions

View File

@ -248,10 +248,12 @@ class OSU(callbacks.Privmsg):
line.strip()
if 'Published address' in line:
emails.append(line.split()[-1])
if emails:
irc.reply(msg, 'Possible matches: %s' % ', '.join(emails))
else:
if len(emails) == 0:
irc.reply(msg, 'There seem to be no matches to that name.')
elif len(emails) == 1:
irc.reply(msg, emails[0])
else:
irc.reply(msg, 'Possible matches: %s' % ', '.join(emails))
except Exception, e:
irc.error(msg, debug.exnToString(e))