From 61c70c1ae8c7f4d08ddbf2a15c5186150f3f9d17 Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Wed, 27 Apr 2005 00:14:22 +0000 Subject: [PATCH] re-create connections at the good place ! --- src/gajim.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/gajim.py b/src/gajim.py index 769269eff..a94fff043 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -34,6 +34,7 @@ import common.sleepy import common.check_for_new_version from common import gajim +from common import connection from common import i18n i18n.init() _ = i18n._ @@ -713,5 +714,9 @@ if __name__ == '__main__': pass parser.read() + + for account in gajim.config.get_per('accounts'): + gajim.connections[account] = common.connection.Connection(account) + Interface() gtk.main()