coding standards

This commit is contained in:
Yann Leboulanger 2006-10-05 09:49:09 +00:00
parent cc03d5d190
commit ce7e782054
1 changed files with 3 additions and 2 deletions

View File

@ -498,7 +498,8 @@ class Interface:
def handle_event_msg(self, account, array):
# 'MSG' (account, (jid, msg, time, encrypted, msg_type, subject,
# chatstate, msg_id, composing_jep, user_nick, xhtml)) user_nick is JEP-0172
# chatstate, msg_id, composing_jep, user_nick, xhtml))
# user_nick is JEP-0172
full_jid_with_resource = array[0]
jid = gajim.get_jid_without_resource(full_jid_with_resource)
@ -598,7 +599,7 @@ class Interface:
msg_type, subject, resource, msg_id, array[9],
advanced_notif_num)
else:
#xhtml in last element
# xhtml in last element
self.roster.on_message(jid, message, array[2], account, array[3],
msg_type, subject, resource, msg_id, array[9],
advanced_notif_num, xhtml = array[10])