better spacing

This commit is contained in:
Alex Groce 2018-07-13 21:29:28 -07:00
parent f710c38f58
commit d06233b2cf

View File

@ -6,7 +6,7 @@ import sys
def logrun(cmd, file, timeout):
sys.stderr.write("\n\n" + ("=" * 80) + "\n")
sys.stderr.write("RUNNING: ")
sys.stderr.write(" ".join(cmd) + "\n")
sys.stderr.write(" ".join(cmd) + "\n\n")
sys.stderr.flush()
with open(file, 'w') as outf:
p = subprocess.Popen(cmd, stdout=outf, stderr=outf)