# HG changeset patch # User Lennard de Rijk # Date 1253124553 -7200 # Node ID 666d31bd43bd0b7713b7655dd4b64c5240965d9c # Parent e89022c0657f3426679c1ed9627ebd8d68837368 Fixed the Student update to properly find its own URL. Also style fix in start_update module. diff -r e89022c0657f -r 666d31bd43bd app/soc/tasks/updates/start_update.py --- a/app/soc/tasks/updates/start_update.py Wed Sep 16 13:38:18 2009 +0200 +++ b/app/soc/tasks/updates/start_update.py Wed Sep 16 20:09:13 2009 +0200 @@ -125,7 +125,8 @@ else: template = 'soc/tasks/run_update.html' context['option'] = option - context['success'] = option['starter'](request, self._getRunUpdateURL(option_name)) + context['success'] = option['starter'](request, + self._getRunUpdateURL(option_name)) content = loader.render_to_string(template, dictionary=context) return http.HttpResponse(content) diff -r e89022c0657f -r 666d31bd43bd app/soc/tasks/updates/student_school_type.py --- a/app/soc/tasks/updates/student_school_type.py Wed Sep 16 13:38:18 2009 +0200 +++ b/app/soc/tasks/updates/student_school_type.py Wed Sep 16 20:09:13 2009 +0200 @@ -104,7 +104,8 @@ # pass along these params as POST to the new task task_params = {'start_key': new_start} - new_task = taskqueue.Task(params=task_params, url=request['PATH_INFO']) + new_task = taskqueue.Task(params=task_params, + url=request.META['PATH_INFO']) new_task.add() # task completed, return OK