Skip to content

Commit 1295056

Browse files
committed
Merge pull request celery#2681 from TakesxiSximada/fix-docstring-typo
fixes docstring typo
2 parents 96d6457 + cab679b commit 1295056

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

celery/backends/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def mark_as_done(self, task_id, result, request=None):
118118
status=states.SUCCESS, request=request)
119119

120120
def mark_as_failure(self, task_id, exc, traceback=None, request=None):
121-
"""Mark task as executed with failure. Stores the execption."""
121+
"""Mark task as executed with failure. Stores the exception."""
122122
return self.store_result(task_id, exc, status=states.FAILURE,
123123
traceback=traceback, request=request)
124124

0 commit comments

Comments
 (0)