Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
Patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Fanebust Dregi authored and markusdregi committed Dec 6, 2019
1 parent 159c41a commit f7cacae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/res/job_queue/job_queue_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def didJobFail(self, job_index):
return self.queue.job_list[job_index].status == JobStatusType.JOB_QUEUE_FAILED

def didJobSucceed(self, job_index):
return self.queue.job_list[job_index].status == JobStatusType.JOB_QUEUE_SUCCEED
return self.queue.job_list[job_index].status == JobStatusType.JOB_QUEUE_SUCCESS

def getJobStatus(self, job_index):
# See comment about return type in the prototype section at
Expand Down

0 comments on commit f7cacae

Please sign in to comment.