mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Fix TypeError message
This commit is contained in:
parent
01174c9b11
commit
849a999744
1 changed files with 4 additions and 1 deletions
|
|
@ -173,7 +173,10 @@ class ExtractOIIOTranscode(publish.Extractor):
|
|||
frames = None
|
||||
parallel_frames = False
|
||||
else:
|
||||
raise TypeError("Unsupported files to ")
|
||||
raise TypeError(
|
||||
f"Unsupported file name type: {type(file_name)}."
|
||||
" Expected str or clique.Collection."
|
||||
)
|
||||
|
||||
self.log.debug("Transcoding file: `{}`".format(file_name))
|
||||
input_path = os.path.join(original_staging_dir, file_name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue