From dc0c5972435a319bd25d8b9ab04c9a997374f28d Mon Sep 17 00:00:00 2001 From: Jonathan Corwin Date: Fri, 15 Oct 2010 10:00:08 +0100 Subject: [PATCH] Warn, not error, if COM Impress not available --- openlp/plugins/presentations/lib/impresscontroller.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openlp/plugins/presentations/lib/impresscontroller.py b/openlp/plugins/presentations/lib/impresscontroller.py index d054c3e9c..69c9347f9 100644 --- a/openlp/plugins/presentations/lib/impresscontroller.py +++ b/openlp/plugins/presentations/lib/impresscontroller.py @@ -169,7 +169,8 @@ class ImpressController(PresentationController): try: return Dispatch(u'com.sun.star.ServiceManager') except pywintypes.com_error: - log.exception(u'Failed to get COM service manager') + log.warn(u'Failed to get COM service manager. ' + u'Impress Controller has been disabled') return None def kill(self):