We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c43b51c commit 837a2f9Copy full SHA for 837a2f9
tools/imagesets/imgset.py
@@ -43,7 +43,7 @@ def run_with_logging(dockercall, cmd, logger, printlog=True):
43
cmdstr = normalize(dockercall) + ' "\n' + ''.join(f'{"":<6}{normalize(c)}\n' for c in cmd) + '"'
44
# save command to log
45
logger.info("++ " + cmdstr + "\n")
46
- pipe = subprocess.Popen(shlex.split(cmdstr), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=False)
+ pipe = subprocess.Popen(shlex.split(cmdstr), stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
47
48
# Maximum number of seconds to wait for "docker run" to finish after
49
# its child process exits. The observed times have been < 1 ms.
0 commit comments