Fixed use of wrong dictionary key in Task Decorators.
authorLennard de Rijk <ljvderijk@gmail.com>
Tue, 29 Sep 2009 20:04:24 +0200
changeset 2991 d6efef2989ac
parent 2990 0b6a093c5c81
child 2992 c860b26481be
Fixed use of wrong dictionary key in Task Decorators.
app/soc/tasks/helper/decorators.py
--- a/app/soc/tasks/helper/decorators.py	Tue Sep 29 19:56:58 2009 +0200
+++ b/app/soc/tasks/helper/decorators.py	Tue Sep 29 20:04:24 2009 +0200
@@ -86,7 +86,7 @@
       order = simplejson.loads(post_dict['order'])
 
     start_key = None
-    if 'next_key' in post_dict:
+    if 'start_key' in post_dict:
       start_key = db.Key(post_dict['start_key'])
 
     json = None