Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2008-10-11 17:06:59 +0400
committerYann Leboulanger <asterix@lagaule.org>2008-10-11 17:06:59 +0400
commit0afc57ad6df7af78d9f6fdb6d50b06903cc7586f (patch)
tree24f25fa24df05da86faca0831790e8c06c5f08ae /src
parent0b56b3c44dc3ef5e80acb02c3b692fbc913ca45d (diff)
[Mishail] fix var name. Fixes #4403
Diffstat (limited to 'src')
-rw-r--r--src/message_window.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/message_window.py b/src/message_window.py
index e13c40455..3811d6fb8 100644
--- a/src/message_window.py
+++ b/src/message_window.py
@@ -442,9 +442,9 @@ class MessageWindow(object):
window_mode = gajim.interface.msg_win_mgr.mode
if window_mode == MessageWindowMgr.ONE_MSG_WINDOW_PERTYPE:
# Show the plural form since number of tabs > 1
- if self.type == 'chat':
+ if self.type_ == 'chat':
label = _('Chats')
- elif self.type == 'gc':
+ elif self.type_ == 'gc':
label = _('Group Chats')
else:
label = _('Private Chats')