Skip to content

Commit

Permalink
Fix f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
bensteinberg committed Nov 1, 2023
1 parent ac562f8 commit 6d17d9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def main(docker_compose_path='docker-compose.yml', action='load'):
# string format to set steps.get-tag.outputs.rebuild_services if printed:
print(f"Returning services-to-rebuild: {to_rebuild}")
with open(os.environ['GITHUB_OUTPUT'], 'a') as fh:
print(f'services-to-rebuild={' '.join(to_rebuild)}', file=fh)
print(f"services-to-rebuild={' '.join(to_rebuild)}", file=fh)


def run_from_command_line():
Expand Down

0 comments on commit 6d17d9d

Please sign in to comment.