From 0863ce8dbadf591840bf60e2180786a4c79cccc0 Mon Sep 17 00:00:00 2001 From: Julien Pivotto Date: Sun, 27 May 2007 09:16:21 +0000 Subject: [PATCH] Fix a bug with changing status in groupchats. Always print "You are now %s" in groupchats, even if you change from "action menu". --- src/groupchat_control.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/groupchat_control.py b/src/groupchat_control.py index fcbcc990b..bc7b3e7a7 100644 --- a/src/groupchat_control.py +++ b/src/groupchat_control.py @@ -1408,7 +1408,6 @@ class GroupchatControl(ChatControlBase): nick = instance.input_entry.get_text().decode('utf-8') nick = helpers.parse_resource(nick) gajim.connections[self.account].join_gc(nick, self.room_jid, None) - self.nick = nick instance = dialogs.InputDialog(title, prompt, proposed_nick, is_modal = False, ok_handler = on_ok)