Include message of the original raised error

This commit is contained in:
Roy Nieterau 2025-05-17 15:43:41 +02:00
parent afbf2c8848
commit 44dc1ea99e

View file

@ -186,8 +186,9 @@ class ExtractOIIOTranscode(publish.Extractor):
additional_command_args,
self.log
)
except MissingRGBAChannelsError:
except MissingRGBAChannelsError as exc:
unknown_rgba_channels = True
self.log.error(exc)
self.log.error(
"Skipping OIIO Transcode. Unknown RGBA channels"
f" for colorspace conversion in file: {input_path}"