Catch failure to start process (Bug #712140)

This commit is contained in:
Jon Tibble 2011-02-04 21:35:57 +00:00
parent dae7dff242
commit a32cf1df43

View File

@ -74,7 +74,11 @@ class PresentationPlugin(Plugin):
self.insertToolboxItem()
for controller in self.controllers:
if self.controllers[controller].enabled():
self.controllers[controller].start_process()
try:
self.controllers[controller].start_process()
except:
log.exception(u'Failed to start controller process')
self.controllers[controller].available = False
self.mediaItem.buildFileMaskString()
def finalise(self):