Minor fix

This commit is contained in:
Massimo Fabbro
2024-02-13 17:15:25 +01:00
committed by GitHub
parent 7e55872ca8
commit 8a48769760
+1 -1
View File
@@ -837,7 +837,7 @@ class Drawing(blenderbim.core.tool.Drawing):
if platform.system() == "Darwin":
subprocess.call(("open", path))
elif platform.system() == "Windows":
os.startfile(path)
os.startfile(os.path.normpath(path))
else:
subprocess.call(("xdg-open", path))