From 6a65b4524253698f0ec19cc83d1e60383c312fd0 Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Sat, 29 Nov 2025 13:50:26 +0100 Subject: [PATCH] Convert asset path to string in filePath function --- src/Mod/CAM/Path/Preferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/CAM/Path/Preferences.py b/src/Mod/CAM/Path/Preferences.py index 625893b870..675f94cb20 100644 --- a/src/Mod/CAM/Path/Preferences.py +++ b/src/Mod/CAM/Path/Preferences.py @@ -245,7 +245,7 @@ def defaultFilePath(): def filePath(): path = defaultFilePath() if not path: - path = getAssetPath() + path = str(getAssetPath()) return path