Skip to content

Commit 97a666f

Browse files
authored
Merge pull request #221 from galaxyproject/220-job-list
Job listing fix
2 parents 696947d + 8c4151a commit 97a666f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

abm/lib/job.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ def list(context: Context, args: list):
3535
log.debug("Getting job list")
3636
if history_id:
3737
history_id = find_history(gi, history_id)
38-
if history_id is None:
39-
print("ERROR: No such history")
40-
return
38+
if history_id is None:
39+
print("ERROR: No such history")
40+
return
4141
job_list = gi.jobs.get_jobs(state=state, history_id=history_id)
4242
log.debug(f"Iterating over job list with {len(job_list)} items")
4343
for job in job_list:

0 commit comments

Comments
 (0)