mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 13:52:15 +01:00
hotfix- string convertion for pathlib path
This commit is contained in:
parent
594c7cc79f
commit
fcde886e0a
1 changed files with 1 additions and 1 deletions
|
|
@ -470,7 +470,7 @@ class IntegrateAssetNew(pyblish.api.InstancePlugin):
|
|||
None
|
||||
"""
|
||||
|
||||
src = Path(src).resolve()
|
||||
src = str(Path(src).resolve())
|
||||
drive, _path = os.path.splitdrive(dst)
|
||||
unc = Path(drive).resolve()
|
||||
dst = str(unc / _path)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue