support/testing/infra: rm extra log flush in builder.py

While integrating proxy support in builder.py, a log flush
was left in the code.  This commit cleans/removes that code.

Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Matt Weber 2018-08-10 20:02:26 -05:00 committed by Thomas Petazzoni
parent 06e3957c16
commit b25c39ebd9

View File

@ -38,7 +38,6 @@ class Builder(object):
if "http_proxy" in os.environ: if "http_proxy" in os.environ:
self.logfile.write("Using system proxy: " + self.logfile.write("Using system proxy: " +
os.environ["http_proxy"] + "\n") os.environ["http_proxy"] + "\n")
self.logfile.flush()
env['http_proxy'] = os.environ["http_proxy"] env['http_proxy'] = os.environ["http_proxy"]
env['https_proxy'] = os.environ["http_proxy"] env['https_proxy'] = os.environ["http_proxy"]
cmd = ["make", "-C", self.builddir] cmd = ["make", "-C", self.builddir]