Skip to content

Commit cb3daa9

Browse files
Merge pull request #980 from Labelbox/lmoehlenbrock-patch-2
FIxed typo in Error message
2 parents 1fbe11d + 627ddf5 commit cb3daa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

labelbox/schema/model_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def _wait_until_done(self, status_fn, timeout_seconds=120, sleep_time=5):
168168
if res['status'] == 'COMPLETE':
169169
return True
170170
elif res['status'] == 'FAILED':
171-
raise Exception(f"Jop failed. Details : {res['errorMessage']}")
171+
raise Exception(f"Job failed. Details : {res['errorMessage']}")
172172
timeout_seconds -= sleep_time
173173
if timeout_seconds <= 0:
174174
raise TimeoutError(

0 commit comments

Comments
 (0)