mirror of https://github.com/google/oss-fuzz.git
infra: trial build: fix missing f-string (#12913)
Signed-off-by: David Korczynski <david@adalogics.com>
This commit is contained in:
parent
9c210fdf12
commit
5c8b34e436
|
@ -287,7 +287,7 @@ def wait_on_builds(build_ids, credentials, cloud_project, end_time): # pylint:
|
|||
# Update status every hour.
|
||||
if current_time >= next_check_time:
|
||||
logging.info(f'[{current_time}] Remaining builds: '
|
||||
'{len(wait_builds)}, {wait_builds}')
|
||||
f'{len(wait_builds)}, {wait_builds}')
|
||||
next_check_time += datetime.timedelta(hours=1)
|
||||
|
||||
# Warn users and write a summary if build is about to end.
|
||||
|
|
Loading…
Reference in New Issue