From 9cd79c250745961d6596291cbc9302c09c078d48 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 23 Apr 2010 20:19:19 -0500 Subject: [PATCH] Reducing noise that misleads about whether a problem occurred --- src/autogv.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) -- 1.7.9.5