From 4d2f64d4b6d3e408ae68d65ed1205579a500cf58 Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Wed, 1 Feb 2012 07:34:35 +0100 Subject: [PATCH] Mental note to self. --- rq/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rq/queue.py b/rq/queue.py index 447139d..dbef8c0 100644 --- a/rq/queue.py +++ b/rq/queue.py @@ -121,7 +121,7 @@ class Queue(object): def requeue(self, job): """Requeues an existing (typically a failed job) onto the queue.""" - pass + raise NotImplementedError('Implement this') def dequeue(self): """Dequeues the function call at the front of this Queue.