mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
OP-2414 - explicit cast to str
f might be pathlib.Path, replace with 2 arguments is only for str
This commit is contained in:
parent
041c2aa240
commit
1617b5253c
1 changed files with 1 additions and 1 deletions
|
|
@ -570,7 +570,7 @@ class AbstractSubmitDeadline(pyblish.api.InstancePlugin):
|
|||
new_exp = []
|
||||
for f in exp:
|
||||
new_exp.append(
|
||||
f.replace(orig_scene, new_scene)
|
||||
str(f).replace(orig_scene, new_scene)
|
||||
)
|
||||
self._instance.data["expectedFiles"] = new_exp
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue