From 3357622c2dc0b6fe75ac573321a1403ee4919e45 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Tue, 22 Aug 2017 23:25:07 +0200 Subject: [PATCH] fix enabling accounts --- gajim/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gajim/config.py b/gajim/config.py index c007c3498..0d41353e5 100644 --- a/gajim/config.py +++ b/gajim/config.py @@ -2582,7 +2582,7 @@ class AccountsWindow: if app.connections[account].gpg: self.xml.get_object('gpg_choose_button2').set_sensitive(True) else: - app.connections[account] = common.connection.Connection(account) + app.connections[account] = connection.Connection(account) if app.connections[account].gpg: self.xml.get_object('gpg_choose_button1').set_sensitive(True) self.init_account_gpg()