From 53de0bda9aabd791b2c9bce8efb98e6d1f5aa711 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 20 Feb 2009 18:56:04 +0000 Subject: [PATCH] fix typo. Fixes #4834 --- src/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.py b/src/config.py index 97c0baf13..85f865918 100644 --- a/src/config.py +++ b/src/config.py @@ -3032,7 +3032,7 @@ class AccountCreationWizardWindow: # connection instance is saved in gajim.connections and we canceled the # addition of the account del gajim.connections[self.account] - if self.account in gajim.config.del_per('accounts'): + if self.account in gajim.config.get_per('accounts'): gajim.config.del_per('accounts', self.account) del gajim.interface.instances['account_creation_wizard'] @@ -3339,7 +3339,7 @@ class AccountCreationWizardWindow: self.go_online_checkbutton.hide() self.show_vcard_checkbutton.hide() del gajim.connections[self.account] - if self.account in gajim.config.del_per('accounts'): + if self.account in gajim.config.get_per('accounts'): gajim.config.del_per('accounts', self.account) img = self.xml.get_widget('finish_image') img.set_from_stock(gtk.STOCK_DIALOG_ERROR, gtk.ICON_SIZE_DIALOG)