From 67f7520c565d523760da7fe000dd723205ad825f Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Tue, 15 Nov 2005 18:12:22 +0000 Subject: [PATCH] fix tb --- src/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config.py b/src/config.py index d88851e8c..a6f8dc5a3 100644 --- a/src/config.py +++ b/src/config.py @@ -1291,12 +1291,12 @@ class AccountModificationWindow: config['keyid'] = self.xml.get_widget('gpg_key_label').get_text().decode('utf-8') config['savegpgpass'] = self.xml.get_widget( 'gpg_save_password_checkbutton').get_active() - config['gpgpassword'] = self.xml.get_widget('gpg_password_entry').\ - get_text().decode('utf-8') + config['gpgpassword'] = self.xml.get_widget('gpg_password_entry' + ).get_text().decode('utf-8') #if we modify the name of the account if name != self.account: #update variables - gajim.interface.instances[name] = gajim.interface.windows[self.account] + gajim.interface.instances[name] = gajim.interface.instances[self.account] gajim.awaiting_events[name] = gajim.awaiting_events[self.account] gajim.nicks[name] = gajim.nicks[self.account] gajim.allow_notifications[name] = \