Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Michaelvll committed May 27, 2024
1 parent 3ad060f commit 1e14607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sky/jobs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def stream_logs(job_id: Optional[int],
if len(managed_jobs) == 0:
return f'No managed job found with name {job_name!r}.'
if len(managed_jobs) > 1:
job_ids_str = ", ".join(job['job_id'] for job in managed_jobs)
job_ids_str = ', '.join(job['job_id'] for job in managed_jobs)
raise ValueError(
f'Multiple managed jobs found with name {job_name!r} (Job '
f'IDs: {job_ids_str}). Please specify the job_id instead.')
Expand Down

0 comments on commit 1e14607

Please sign in to comment.