Fix typos.

This commit is contained in:
Vincent Driessen 2012-08-29 12:19:49 +02:00
parent db4ec16be8
commit db80be4ef7
1 changed files with 2 additions and 2 deletions

View File

@ -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()