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>2008-12-16 10:14:45 +0300
committerYann Leboulanger <asterix@lagaule.org>2008-12-16 10:14:45 +0300
commita09cbaddf1b91e33076f3857fca4b1dcc8a8834d (patch)
treead6d880dcf96a049bbd1e64d859e1d2fde76225c
parentb317ffcdaee2816416fa15ed03ac6d44496ae5f5 (diff)
remove useless print
-rw-r--r--src/common/connection.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/connection.py b/src/common/connection.py
index c137a2809..3caade38c 100644
--- a/src/common/connection.py
+++ b/src/common/connection.py
@@ -1116,7 +1116,7 @@ class Connection(ConnectionHandlers):
_('It is not possible to send a message to %s, this JID is not '
'valid.') % jid))
return
-
+
if msg and not xhtml and gajim.config.get(
'rst_formatting_outgoing_messages'):
from common.rst_xhtml_generator import create_xhtml
@@ -1237,7 +1237,6 @@ class Connection(ConnectionHandlers):
if session.enable_encryption:
msg_iq = session.encrypt_stanza(msg_iq)
- print msg_iq
msg_id = self.connection.send(msg_iq)
if not forward_from and session and session.is_loggable():
ji = gajim.get_jid_without_resource(jid)