Convert asset path to string in filePath function

(cherry picked from commit 6a65b45242)
This commit is contained in:
Roy-043
2025-12-01 19:22:21 +01:00
committed by Max Wilfinger
parent 9fcef20600
commit e1128e3491
+1 -1
View File
@@ -245,7 +245,7 @@ def defaultFilePath():
def filePath():
path = defaultFilePath()
if not path:
path = getAssetPath()
path = str(getAssetPath())
return path