mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-31 18:06:31 +02:00
[core] add quotes on strings
to deal with space characters on command line
This commit is contained in:
parent
576124a342
commit
8e1452d5bc
3 changed files with 5 additions and 3 deletions
|
@ -179,7 +179,7 @@ class CameraInit(desc.CommandLineNode):
|
|||
def buildCommandLine(self, chunk):
|
||||
cmd = desc.CommandLineNode.buildCommandLine(self, chunk)
|
||||
if chunk.node.viewpointsFile:
|
||||
cmd += ' --input ' + chunk.node.viewpointsFile
|
||||
cmd += ' --input "{}"'.format(chunk.node.viewpointsFile)
|
||||
return cmd
|
||||
|
||||
def processChunk(self, chunk):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue