please use tupples; only use list when need to append later etc

This commit is contained in:
Nikos Kouremenos 2005-11-01 12:54:57 +00:00
parent 370b6870f5
commit 0f9f404000
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ class GroupchatWindow(chat.Chat):
_('You can manage your bookmarks via Actions menu in your roster.'))
def on_message_textview_key_press_event(self, widget, event):
if event.keyval not in [gtk.keysyms.ISO_Left_Tab, gtk.keysyms.Tab]:
if event.keyval not in (gtk.keysyms.ISO_Left_Tab, gtk.keysyms.Tab):
room_jid = self.get_active_jid()
self.last_key_tabs[room_jid] = False