mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-09 13:52:23 +00:00
Minor fix
This commit is contained in:
@@ -837,7 +837,7 @@ class Drawing(blenderbim.core.tool.Drawing):
|
|||||||
if platform.system() == "Darwin":
|
if platform.system() == "Darwin":
|
||||||
subprocess.call(("open", path))
|
subprocess.call(("open", path))
|
||||||
elif platform.system() == "Windows":
|
elif platform.system() == "Windows":
|
||||||
os.startfile(path)
|
os.startfile(os.path.normpath(path))
|
||||||
else:
|
else:
|
||||||
subprocess.call(("xdg-open", path))
|
subprocess.call(("xdg-open", path))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user