Fix a small mistake

This commit is contained in:
mathieui 2012-04-18 19:42:04 +02:00
parent 25a9a36201
commit 37e3c1ea29

View file

@ -703,7 +703,7 @@ class MucTab(ChatTab):
/info <nick> /info <nick>
""" """
if not arg: if not arg:
return self.command_help('info') return self.core.command_help('info')
user = self.get_user_by_name(arg) user = self.get_user_by_name(arg)
if not user: if not user:
return self.core.information("Unknown user: %s" % arg) return self.core.information("Unknown user: %s" % arg)
@ -782,7 +782,7 @@ class MucTab(ChatTab):
self.core.information(version, 'Info') self.core.information(version, 'Info')
if not arg: if not arg:
return self.command_help('version') return self.core.command_help('version')
if arg in [user.nick for user in self.users]: if arg in [user.nick for user in self.users]:
jid = JID(self.name) jid = JID(self.name)
jid.resource = arg jid.resource = arg
@ -795,7 +795,7 @@ class MucTab(ChatTab):
/nick <nickname> /nick <nickname>
""" """
if not arg: if not arg:
return self.command_help('nick') return self.core.command_help('nick')
nick = arg nick = arg
if not self.joined: if not self.joined:
return self.core.information('/nick only works in joined rooms', 'Info') return self.core.information('/nick only works in joined rooms', 'Info')
@ -1820,7 +1820,7 @@ class RosterInfoTab(Tab):
""" """
args = common.shell_split(arg) args = common.shell_split(arg)
if not args: if not args:
return self.command_help('name') return self.core.command_help('name')
jid = JID(args[0]).bare jid = JID(args[0]).bare
name = args[1] if len(args) == 2 else '' name = args[1] if len(args) == 2 else ''