From 17f9fdabae6ca9a29cd91febd88207a8c6dfc96d Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Tue, 17 Jan 2006 23:08:35 +0000 Subject: [PATCH] fix a typo and make sure not matter what we do not add dead server. TODO: (and also HOWTODO :)) rm from 0.9 config when we run 0.10 --- src/common/optparser.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/optparser.py b/src/common/optparser.py index d5630c4fb..bbe4d395d 100644 --- a/src/common/optparser.py +++ b/src/common/optparser.py @@ -185,8 +185,7 @@ class OptionsParser: for account in gajim.config.get_per('accounts'): proxies = gajim.config.get_per('accounts', account, 'file_transfer_proxies') - for new in ('proxy.netlab.cz', 'proxy65.jabber.ccc.de', - 'proxy65.unstable.nl'): + for new in ('proxy.netlab.cz', 'proxy65.jabber.ccc.de'): if proxies.find(new) < 0: proxies += ', ' + new gajim.config.set_per('accounts', account, 'file_transfer_proxies', @@ -201,5 +200,6 @@ class OptionsParser: gajim.config.set('version', '0.9') def update_config_09_to_010(self): - if self.old_values.has_key('usetabbedchat') and not self.old_valuse['usetabbedchat']: + if self.old_values.has_key('usetabbedchat') and not self.old_values['usetabbedchat']: gajim.config.set('one_message_window', 'never') +