22
22
from gi.repository import GConf
23
23
from gi.repository import GObject
25
26
class SafeGConfClient(object):
26
27
"""A gconfclient that does not crash if gconf is not avaialble"""
30
31
def get_bool(self, key, default=False):
33
34
except GObject.GError, e:
35
36
def get_int(self, key, default=0):