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:
authorYann Leboulanger <asterix@lagaule.org>2010-02-15 01:12:45 +0300
committerYann Leboulanger <asterix@lagaule.org>2010-02-15 01:12:45 +0300
commit1910ad3726467609ff5fb55011d4700c515665b6 (patch)
tree498050eee5ee523e3311053aea48833a410c483d
parent06e8f9aa9ccd004aac0e3a681fa59b334f9ec9e2 (diff)
fix pep call
-rw-r--r--src/common/connection_handlers.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/connection_handlers.py b/src/common/connection_handlers.py
index cd90a804e..4c36bbfb9 100644
--- a/src/common/connection_handlers.py
+++ b/src/common/connection_handlers.py
@@ -2157,13 +2157,13 @@ class ConnectionHandlers(ConnectionVcard, ConnectionBytestream, ConnectionDisco,
Send pep info that were waiting for connection
"""
if self.to_be_sent_activity:
- pep.user_send_activity(*self.to_be_sent_activity)
+ pep.user_send_activity(self.name, *self.to_be_sent_activity)
if self.to_be_sent_mood:
- pep.user_send_mood(*self.to_be_sent_mood)
+ pep.user_send_mood(self.name, *self.to_be_sent_mood)
if self.to_be_sent_tune:
- pep.user_send_tune(*self.to_be_sent_tune)
+ pep.user_send_tune(self.name, *self.to_be_sent_tune)
if self.to_be_sent_nick:
- pep.user_send_nick(self.to_be_sent_nick)
+ pep.user_send_nick(self.name, self.to_be_sent_nick)
self.reset_awaiting_pep()
def _pubsubEventCB(self, con, msg):