From 3018ebee211a2020d809764756778eed8bd48013 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Thu, 3 Jun 2010 16:37:58 +0100 Subject: [PATCH] Drop an avoidable incompatibility with python 2.4. Closes LP #589200 --- terminatorlib/prefseditor.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/terminatorlib/prefseditor.py b/terminatorlib/prefseditor.py index 0b6eb8f8..d6a02b39 100755 --- a/terminatorlib/prefseditor.py +++ b/terminatorlib/prefseditor.py @@ -147,8 +147,7 @@ class PrefsEditor: self.set_values() except Exception, e: err('Unable to set values: %s' % e) - finally: - self.config.uninhibit_save() + self.config.uninhibit_save() def on_closebutton_clicked(self, _button): """Close the window"""