Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/extensions/cpsection/keyboard/model.py
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/cpsection/keyboard/model.py')
-rw-r--r--extensions/cpsection/keyboard/model.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/extensions/cpsection/keyboard/model.py b/extensions/cpsection/keyboard/model.py
index 16f6a01..320d7d7 100644
--- a/extensions/cpsection/keyboard/model.py
+++ b/extensions/cpsection/keyboard/model.py
@@ -171,8 +171,11 @@ class KeyboardManager(object):
# FIXME, gconf_client_set_list not introspectable #681433
# self._gconf_client.set_list(_OPTIONS_KEY, GConf.ValueType.STRING,
# options)
- SugarExt.gconf_client_set_string_list(self._gconf_client,
+ try:
+ SugarExt.gconf_client_set_string_list(self._gconf_client,
_OPTIONS_KEY, options)
+ except:
+ logging.error('Could not set the gconf value for the keyboard options key')
self._configrec.set_options(options)
self._configrec.activate(self._engine)
@@ -183,8 +186,11 @@ class KeyboardManager(object):
# FIXME, gconf_client_set_list not introspectable #681433
# self._gconf_client.set_list(_LAYOUTS_KEY, GConf.ValueType.STRING,
# layouts)
- SugarExt.gconf_client_set_string_list(self._gconf_client,
+ try:
+ SugarExt.gconf_client_set_string_list(self._gconf_client,
_LAYOUTS_KEY, layouts)
+ except:
+ logging.error('Could not set the gconf value for the keyboard layouts key')
layouts_list = []
variants_list = []
for layout in layouts: