Seen: fix for tests

This commit is contained in:
James Lu 2014-12-19 07:52:28 -08:00
parent 8b4dfe46ac
commit be4c074f8d

View File

@ -233,7 +233,7 @@ class Seen(callbacks.Plugin):
saying. <channel> is only necessary if the message isn't sent on the
channel itself. <nick> may contain * as a wildcard.
"""
if ircutils.strEqual(name, irc.nick):
if name and ircutils.strEqual(name, irc.nick):
irc.reply(_("You've found me!"))
return
if msg.nick not in irc.state.channels[channel].users:
@ -253,7 +253,7 @@ class Seen(callbacks.Plugin):
and returns the last time user was active in <channel>. <channel> is
only necessary if the message isn't sent on the channel itself.
"""
if ircutils.strEqual(name, irc.nick):
if name and ircutils.strEqual(name, irc.nick):
irc.reply(_("You've found me!"))
return
if msg.nick not in irc.state.channels[channel].users: