fix what we expect

This commit is contained in:
Nikos Kouremenos 2006-10-08 00:16:22 +00:00
parent 7568098412
commit 313091a771

View file

@ -39,6 +39,7 @@ from common import helpers
from chat_control import ChatControl from chat_control import ChatControl
from chat_control import ChatControlBase from chat_control import ChatControlBase
from conversation_textview import ConversationTextview from conversation_textview import ConversationTextview
from common.exceptions import GajimGeneralException as GajimGeneralException
#(status_image, type, nick, shown_nick) #(status_image, type, nick, shown_nick)
( (
@ -1086,7 +1087,7 @@ class GroupchatControl(ChatControlBase):
gajim.interface.instances[self.account]['join_gc'] =\ gajim.interface.instances[self.account]['join_gc'] =\
dialogs.JoinGroupchatWindow(self.account, dialogs.JoinGroupchatWindow(self.account,
server = server, room = room, nick = nick) server = server, room = room, nick = nick)
except RuntimeError: except GajimGeneralException:
pass pass
self.clear(self.msg_textview) self.clear(self.msg_textview)
else: else: