Reducing noise that misleads about whether a problem occurred
authorEd Page <eopage@byu.net>
Sat, 24 Apr 2010 01:19:19 +0000 (20:19 -0500)
committerEd Page <eopage@byu.net>
Sat, 24 Apr 2010 01:19:19 +0000 (20:19 -0500)
src/autogv.py

index 9a0f61e..6a238c0 100644 (file)
@@ -272,4 +272,7 @@ class DelayEnableContactIntegration(object):
 
        @misc_utils.log_exception(_moduleLogger)
        def _on_delayed_enable(self):
-               self.__enableSystemContactSupport.start()
+               try:
+                       self.__enableSystemContactSupport.start()
+               except dbus.DBusException, e:
+                       _moduleLogger.info("Contact integration seems to not be supported (%s)" % e)