mirror of https://github.com/rq/rq.git
Fix typos.
This commit is contained in:
parent
db4ec16be8
commit
db80be4ef7
|
@ -454,9 +454,9 @@ class Worker(object):
|
|||
self.failed_queue.quarantine(job, exc_info=exc_string)
|
||||
|
||||
def push_exc_handler(self, handler_func):
|
||||
"""Pushes an exception handler onto the exc hanlder stack."""
|
||||
"""Pushes an exception handler onto the exc handler stack."""
|
||||
self._exc_handlers.append(handler_func)
|
||||
|
||||
def pop_exc_handler(self):
|
||||
"""Pops the latest exception handler off of the exc hanlder stack."""
|
||||
"""Pops the latest exception handler off of the exc handler stack."""
|
||||
return self._exc_handlers.pop()
|
||||
|
|
Loading…
Reference in New Issue