[CIFuzz] log bug fix (#3407)

* Fixing log bug

* Fixing log bug
This commit is contained in:
Leo Neat 2020-02-18 15:45:31 -08:00 committed by GitHub
parent 503c09ebe1
commit e661c8c4a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class FuzzTarget:
err_str = err.decode('ascii')
test_case = self.get_test_case(err_str)
if not test_case:
logging.error('No test case found in stack trace.', file=sys.stderr)
logging.error('No test case found in stack trace. %s.', sys.stderr)
return None, None
if self.is_reproducible(test_case):
return test_case, err_str