fix typo. Fixes #4834
This commit is contained in:
parent
5834a2ae82
commit
53de0bda9a
1 changed files with 2 additions and 2 deletions
|
@ -3032,7 +3032,7 @@ class AccountCreationWizardWindow:
|
||||||
# connection instance is saved in gajim.connections and we canceled the
|
# connection instance is saved in gajim.connections and we canceled the
|
||||||
# addition of the account
|
# addition of the account
|
||||||
del gajim.connections[self.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)
|
gajim.config.del_per('accounts', self.account)
|
||||||
del gajim.interface.instances['account_creation_wizard']
|
del gajim.interface.instances['account_creation_wizard']
|
||||||
|
|
||||||
|
@ -3339,7 +3339,7 @@ class AccountCreationWizardWindow:
|
||||||
self.go_online_checkbutton.hide()
|
self.go_online_checkbutton.hide()
|
||||||
self.show_vcard_checkbutton.hide()
|
self.show_vcard_checkbutton.hide()
|
||||||
del gajim.connections[self.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)
|
gajim.config.del_per('accounts', self.account)
|
||||||
img = self.xml.get_widget('finish_image')
|
img = self.xml.get_widget('finish_image')
|
||||||
img.set_from_stock(gtk.STOCK_DIALOG_ERROR, gtk.ICON_SIZE_DIALOG)
|
img.set_from_stock(gtk.STOCK_DIALOG_ERROR, gtk.ICON_SIZE_DIALOG)
|
||||||
|
|
Loading…
Add table
Reference in a new issue