From 6630d88c0817bc3243269a91d23c4d2b9d5375d4 Mon Sep 17 00:00:00 2001 From: red-agent Date: Tue, 15 Sep 2009 22:59:48 +0300 Subject: [PATCH] Fixed a bug in the nick command --- src/commands/implementation.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/implementation.py b/src/commands/implementation.py index c8f7a38c4..372bd9ff4 100644 --- a/src/commands/implementation.py +++ b/src/commands/implementation.py @@ -134,6 +134,7 @@ class GroupChatCommands(CommonCommands): except Exception: raise CommandError(_("Invalid nickname")) self.connection.join_gc(new_nick, self.room_jid, None, change_nick=True) + self.new_nick = new_nick @command('query', raw=True) def chat(self, nick):