From d592fbdf050bbb7f5c2b973d0a86e4f61846c235 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos <kourem@gmail.com> Date: Fri, 6 Oct 2006 12:30:57 +0000 Subject: [PATCH] fix identation [rm spaces too] --- src/config.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/config.py b/src/config.py index e76f76a189..477c54a854 100644 --- a/src/config.py +++ b/src/config.py @@ -1437,12 +1437,12 @@ class AccountModificationWindow: # check if relogin is needed relogin_needed = False if self.options_changed_need_relogin(config, - ('resource', 'proxy', 'usessl', 'keyname', - 'use_custom_host', 'custom_host')): + ('resource', 'proxy', 'usessl', 'keyname', + 'use_custom_host', 'custom_host')): relogin_needed = True elif config['use_custom_host'] and (self.option_changed(config, - 'custom_host') or self.option_changed(config, 'custom_port')): + 'custom_host') or self.option_changed(config, 'custom_port')): relogin_needed = True if self.option_changed(config, 'use_ft_proxies') and \ @@ -1455,9 +1455,9 @@ class AccountModificationWindow: for opt in config: gajim.config.set_per('accounts', name, opt, config[opt]) if config['savepass']: - passwords.save_password(name, config['password']) + passwords.save_password(name, config['password']) else: - passwords.save_password(name, None) + passwords.save_password(name, None) # refresh accounts window if gajim.interface.instances.has_key('accounts'): gajim.interface.instances['accounts'].init_accounts() -- GitLab