From: Ed Page Date: Sat, 24 Apr 2010 01:19:19 +0000 (-0500) Subject: Reducing noise that misleads about whether a problem occurred X-Git-Url: http://vcs.maemo.org/git/?p=theonering;a=commitdiff_plain;h=9cd79c250745961d6596291cbc9302c09c078d48 Reducing noise that misleads about whether a problem occurred --- diff --git a/src/autogv.py b/src/autogv.py index 9a0f61e..6a238c0 100644 --- a/src/autogv.py +++ b/src/autogv.py @@ -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)