From db80be4ef7a08b217aa995e8e638a8287403f915 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Wed, 29 Aug 2012 12:19:49 +0200 Subject: [PATCH] Fix typos. --- rq/worker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rq/worker.py b/rq/worker.py index 4b0273a..2378614 100644 --- a/rq/worker.py +++ b/rq/worker.py @@ -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()