Skip to content
This repository has been archived by the owner on Sep 26, 2020. It is now read-only.

Commit

Permalink
Fix string concat
Browse files Browse the repository at this point in the history
  • Loading branch information
Octogonapus committed Jan 31, 2020
1 parent c1b1710 commit 502d78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion axon/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ def impl_remove_heartbeat(job_id, bucket_name, region):


def create_progress_prefix(job_id):
return "axon-training-progress/" + job_id
return "axon-training-progress/{}".format(job_id)


@click.group()
Expand Down

0 comments on commit 502d78b

Please sign in to comment.