Skip to content

Commit 837a2f9

Browse files
committed
Removed change made during early debugging.
1 parent c43b51c commit 837a2f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/imagesets/imgset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def run_with_logging(dockercall, cmd, logger, printlog=True):
4343
cmdstr = normalize(dockercall) + ' "\n' + ''.join(f'{"":<6}{normalize(c)}\n' for c in cmd) + '"'
4444
# save command to log
4545
logger.info("++ " + cmdstr + "\n")
46-
pipe = subprocess.Popen(shlex.split(cmdstr), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=False)
46+
pipe = subprocess.Popen(shlex.split(cmdstr), stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
4747

4848
# Maximum number of seconds to wait for "docker run" to finish after
4949
# its child process exits. The observed times have been < 1 ms.

0 commit comments

Comments
 (0)