diff --git a/python/res/job_queue/job_queue_manager.py b/python/res/job_queue/job_queue_manager.py index 9f5816efd3..233c3989e8 100644 --- a/python/res/job_queue/job_queue_manager.py +++ b/python/res/job_queue/job_queue_manager.py @@ -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