From f64a0dcc05fbe30f84a93b8dfcfcffa425f551b8 Mon Sep 17 00:00:00 2001 From: bmc-msft <41130664+bmc-msft@users.noreply.github.com> Date: Tue, 16 Feb 2021 12:22:45 -0500 Subject: [PATCH] lint integration-test.py (#549) --- src/integration-tests/integration-test.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/integration-tests/integration-test.py b/src/integration-tests/integration-test.py index 71408a2a0..fdc085375 100755 --- a/src/integration-tests/integration-test.py +++ b/src/integration-tests/integration-test.py @@ -424,7 +424,10 @@ class TestOnefuzz: self.logger.info("launching repro: %s", self.target_jobs[job_id]) report = self.get_job_crash(job_id) if report is None: - self.logger.warning("target does not include crash reports: %s", self.target_jobs[job_id]) + self.logger.warning( + "target does not include crash reports: %s", + self.target_jobs[job_id], + ) return (container, path) = report self.repros[job_id] = self.of.repro.create(container, path, duration=1)