Convert asset path to string in filePath function

This commit is contained in:
Roy-043
2025-12-01 10:51:16 -06:00
committed by Chris Hennes
parent 8ea5075385
commit 6a65b45242
+1 -1
View File
@@ -245,7 +245,7 @@ def defaultFilePath():
def filePath():
path = defaultFilePath()
if not path:
path = getAssetPath()
path = str(getAssetPath())
return path