Convert asset path to string in filePath function

This commit is contained in:
Roy-043
2025-11-29 13:50:26 +01:00
committed by Chris Hennes
parent 8ea5075385
commit 6a65b45242

View File

@@ -245,7 +245,7 @@ def defaultFilePath():
def filePath():
path = defaultFilePath()
if not path:
path = getAssetPath()
path = str(getAssetPath())
return path