Removed 'load_capture_preset' exception catch

This commit is contained in:
Derek Severin 2021-06-01 14:38:35 +07:00
parent f44ff17f8f
commit 39dd0fc3b8

View file

@ -45,11 +45,7 @@ class ExtractPlayblast(openpype.api.Extractor):
# get cameras
camera = instance.data['review_camera']
try:
preset = lib.load_capture_preset(data=self.capture_preset)
except KeyError as ke:
self.log.error('Error loading capture presets: {}'.format(str(ke)))
preset = {}
preset = lib.load_capture_preset(data=self.capture_preset)
preset['camera'] = camera