Skip to content

Commit ccf2993

Browse files
authored
Merge pull request #2838 from alicevision/bugfix/graphNamingWithSpace
[core] Support graph names with spaces
2 parents 5dda2ac + da05aae commit ccf2993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meshroom/core/desc/node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def getMrNodeType(self):
260260
return MrNodeType.NODE
261261

262262
def processChunkInEnvironment(self, chunk):
263-
meshroomComputeCmd = f"{_MESHROOM_COMPUTE_EXE} {chunk.node.graph.filepath} --node {chunk.node.name} --extern --inCurrentEnv"
263+
meshroomComputeCmd = f"{_MESHROOM_COMPUTE_EXE} \"{chunk.node.graph.filepath}\" --node {chunk.node.name} --extern --inCurrentEnv"
264264

265265
if len(chunk.node.getChunks()) > 1:
266266
meshroomComputeCmd += f" --iteration {chunk.range.iteration}"

0 commit comments

Comments
 (0)