From fd2393d6a2e87429b2a53e3dde576c076b884862 Mon Sep 17 00:00:00 2001 From: taoning Date: Mon, 22 Jul 2024 15:21:17 -0700 Subject: [PATCH] fix(util): rfluxmtx --- pyradiance/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyradiance/util.py b/pyradiance/util.py index 1d57a74..f288105 100644 --- a/pyradiance/util.py +++ b/pyradiance/util.py @@ -700,7 +700,7 @@ def rfluxmtx( cmd.extend(["-i", str(octree)]) if scene is not None: if sys.platform == "win32": - cmd.extend(f"'{str(s)}'" for s in scene) + cmd.extend(f'"{str(s)}"' for s in scene) else: cmd.extend(str(s) for s in scene) return sp.run(cmd, check=True, stdout=sp.PIPE, input=rays).stdout