Fix typos.

main
Vincent Driessen 12 years ago
parent db4ec16be8
commit db80be4ef7

@ -454,9 +454,9 @@ class Worker(object):
self.failed_queue.quarantine(job, exc_info=exc_string) self.failed_queue.quarantine(job, exc_info=exc_string)
def push_exc_handler(self, handler_func): 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) self._exc_handlers.append(handler_func)
def pop_exc_handler(self): 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() return self._exc_handlers.pop()

Loading…
Cancel
Save