mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 00:38:41 +02:00
[core] use string formatting to print command info
This commit is contained in:
parent
3ff3308700
commit
9522ea7092
1 changed files with 2 additions and 2 deletions
|
@ -378,8 +378,8 @@ class CommandLineNode(Node):
|
|||
cmd = self.buildCommandLine(chunk)
|
||||
chunk.status.commandLine = cmd
|
||||
chunk.saveStatusFile()
|
||||
print(' - commandLine:', cmd)
|
||||
print(' - logFile:', chunk.logFile)
|
||||
print(' - commandLine: {}'.format(cmd))
|
||||
print(' - logFile: {}'.format(chunk.logFile))
|
||||
chunk.subprocess = psutil.Popen(cmd, stdout=logF, stderr=logF, shell=True)
|
||||
|
||||
# store process static info into the status file
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue