re-create connections at the good place !
This commit is contained in:
parent
d5c3059a18
commit
61c70c1ae8
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue