Skip to content

Commit

Permalink
infra: trial build: fix missing f-string
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <[email protected]>
  • Loading branch information
DavidKorczynski committed Jan 7, 2025
1 parent deebef7 commit e25113a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/build/functions/trial_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit e25113a

Please sign in to comment.