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)