From 81eb629a539544aef298440da96ee514db1d9527 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Tue, 19 Jul 2005 21:52:01 +0000 Subject: [PATCH] typo --- src/tabbed_chat_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tabbed_chat_window.py b/src/tabbed_chat_window.py index 946c42756..4a8db4b5f 100644 --- a/src/tabbed_chat_window.py +++ b/src/tabbed_chat_window.py @@ -318,7 +318,7 @@ class TabbedChatWindow(chat.Chat): if yes we go active if not already if no we go paused if not already ''' current_state = self.chatstates[contact.jid] - if current_state = False: # he doesn't support chatstates + if current_state == False: # he doesn't support chatstates return False # stop looping if self.mouse_over_in_last_5_secs: self.send_chatstate('active') @@ -336,7 +336,7 @@ class TabbedChatWindow(chat.Chat): if yes we go active if not already if no we go inactive if not already ''' current_state = self.chatstates[contact.jid] - if current_state = False: # he doesn't support chatstates + if current_state == False: # he doesn't support chatstates return False # stop looping if self.mouse_over_in_last_5_secs: self.send_chatstate('active')