浏览代码

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>
Matt Weber 7 年之前
父节点
当前提交
b25c39ebd9
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      support/testing/infra/builder.py

+ 0 - 1
support/testing/infra/builder.py

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