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
diff options
context:
space:
mode:
Diffstat (limited to 'src/session.py')
-rw-r--r--src/session.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/src/session.py b/src/session.py
index a2e911a55..e13eb0b8f 100644
--- a/src/session.py
+++ b/src/session.py
@@ -57,7 +57,9 @@ class ChatControlSession(stanza_session.EncryptedStanzaSession):
self.detach_from_control()
def get_chatstate(self, msg, msgtxt):
- '''extracts chatstate from a <message/> stanza'''
+ """
+ Extract chatstate from a <message/> stanza
+ """
composing_xep = None
chatstate = None
@@ -83,7 +85,9 @@ class ChatControlSession(stanza_session.EncryptedStanzaSession):
return (composing_xep, chatstate)
def received(self, full_jid_with_resource, msgtxt, tim, encrypted, msg):
- '''dispatch a received <message> stanza'''
+ """
+ Dispatch a received <message> stanza
+ """
msg_type = msg.getType()
subject = msg.getSubject()
resource = gajim.get_resource_from_jid(full_jid_with_resource)
@@ -271,9 +275,11 @@ class ChatControlSession(stanza_session.EncryptedStanzaSession):
def roster_message(self, jid, msg, tim, encrypted=False, msg_type='',
- subject=None, resource='', msg_id=None, user_nick='',
- advanced_notif_num=None, xhtml=None, form_node=None):
- '''display the message or show notification in the roster'''
+ subject=None, resource='', msg_id=None, user_nick='',
+ advanced_notif_num=None, xhtml=None, form_node=None):
+ """
+ Display the message or show notification in the roster
+ """
contact = None
# if chat window will be for specific resource
resource_for_chat = resource