Warn rather than error if COM Impress controller not available.

bzr-revno: 1089
This commit is contained in:
Jonathan Corwin 2010-10-15 17:10:05 +02:00 committed by Raoul Snyman
commit 73e0776b9a

View File

@ -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):