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
path: root/core
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2004-01-16 01:46:35 +0300
committerYann Leboulanger <asterix@lagaule.org>2004-01-16 01:46:35 +0300
commite8b6c78f5e7575fc8eabad05b9c6279a9bdf38c1 (patch)
tree53ab71aad1a779de9000e7d02a7ba4431f26fe51 /core
parenta833e9685fdf3076e1eec1736630ad62d9e5b87c (diff)
remove group iter from roster when empty
Diffstat (limited to 'core')
-rw-r--r--core/core.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/core.py b/core/core.py
index 686284fd0..2cbcc5a83 100644
--- a/core/core.py
+++ b/core/core.py
@@ -112,7 +112,8 @@ class GajimCore:
password = self.cfgParser.__getattr__("%s" % account+"_password")
ressource = self.cfgParser.__getattr__("%s" % account+"_ressource")
self.con = common.jabber.Client(host = \
- hostname, debug = [common.jabber.DBG_ALWAYS], log = sys.stderr)
+ hostname, debug = [common.jabber.DBG_ALWAYS], log = sys.stderr, connection=common.xmlstream.TCP, port=5222)
+# hostname, debug = [common.jabber.DBG_ALWAYS], log = sys.stderr, connection=common.xmlstream.TCP_SSL, port=5223)
try:
self.con.connect()
except IOError, e: