Don't use a shell and thus avoid a whole class of problems

reviewable/pr18780/r1
Jeremy Katz 13 years ago
parent 2a3a0d60cd
commit 8336f0d650

@ -11,7 +11,7 @@ import datetime
args = sys.argv[1:]
startd = datetime.datetime.now()
cmd = subprocess.Popen(args, shell=True,
cmd = subprocess.Popen(args, shell=False,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
out, err = cmd.communicate()

Loading…
Cancel
Save