mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
fix(nuke): path with hashes error
This commit is contained in:
parent
5b89eca421
commit
ac1fab9bdd
1 changed files with 3 additions and 0 deletions
|
|
@ -69,6 +69,9 @@ class ExtractReviewData(pype.api.Extractor):
|
|||
first_frame = instance.data.get("frameStart", None)
|
||||
last_frame = instance.data.get("frameEnd", None)
|
||||
|
||||
if "#" in fhead:
|
||||
fhead = fhead.replace("#", "")[:-1]
|
||||
|
||||
rnode = nuke.createNode("Read")
|
||||
|
||||
rnode["file"].setValue(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue