Reformat render_to_response calls

Just a simple indentation and ordering change, no
functional change.
This commit is contained in:
Elrond
2011-06-05 16:02:12 +02:00
parent 1c63ad5d35
commit c9c2493435
5 changed files with 38 additions and 43 deletions

View File

@@ -80,13 +80,11 @@ def submit_start(request):
return exc.HTTPFound(
location=request.urlgen("mediagoblin.submit.success"))
# render
return render_to_response(
request, 'mediagoblin/submit/start.html',
{'submit_form': submit_form})
return render_to_response(request,
'mediagoblin/submit/start.html',
{'submit_form': submit_form})
def submit_success(request):
# render
return render_to_response(
request, 'mediagoblin/submit/success.html', {})
return render_to_response(request,
'mediagoblin/submit/success.html', {})