Fixed getOtherUser.

This commit is contained in:
Jeremy Fincher 2004-10-26 21:01:05 +00:00
parent b32215e169
commit 49019308d7
1 changed files with 3 additions and 2 deletions

View File

@ -282,11 +282,12 @@ def getOtherUser(irc, msg, args, state):
del args[0]
except KeyError:
try:
getHostmask(irc, msg, args, state)
getHostmask(irc, msg, [args[0]], state)
hostmask = state.args.pop()
state.args.append(ircdb.users.getUser(hostmask))
del args[0]
except (KeyError, callbacks.Error):
irc.errorNoUser(name=hostmask)
irc.errorNoUser(name=args[0])
def _getRe(f):
def get(irc, msg, args, state, convert=True):