# HG changeset patch # User Lennard de Rijk # Date 1254247464 -7200 # Node ID d6efef2989ac140462da6d92fe3a8c3f254133b4 # Parent 0b6a093c5c81902433919446d4268d7fa5b9d3d0 Fixed use of wrong dictionary key in Task Decorators. diff -r 0b6a093c5c81 -r d6efef2989ac 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