mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Include message of the original raised error
This commit is contained in:
parent
afbf2c8848
commit
44dc1ea99e
1 changed files with 2 additions and 1 deletions
|
|
@ -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}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue