From 61572e55315be9e3a75ca782273fbff3e2dc547c Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 8 Apr 2008 10:08:51 +0100 Subject: [PATCH] like the fixme says, re-enable handling of systems without gconf --- terminator | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/terminator b/terminator index 7706e56d..2aede4bf 100755 --- a/terminator +++ b/terminator @@ -516,14 +516,13 @@ class Terminator: stores = [] stores.append (terminatorconfig.TerminatorConfValuestoreRC ()) -# FIXME: enable this again, we should trap and discard broken gconf stuff -# try: - import gconf - store = terminatorconfig.TerminatorConfValuestoreGConf () - store.set_reconfigure_callback (self.reconfigure_vtes) - stores.append (store) -# except: -# pass + try: + import gconf + store = terminatorconfig.TerminatorConfValuestoreGConf () + store.set_reconfigure_callback (self.reconfigure_vtes) + stores.append (store) + except: + pass self.conf = terminatorconfig.TerminatorConfig (stores)