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

@@ -56,8 +56,7 @@ def edit_media(request, media):
location=request.urlgen("mediagoblin.user_pages.media_home",
user=media.uploader()['username'], media=media['slug']))
# render
return render_to_response(
request, 'mediagoblin/edit/edit.html',
{'media': media,
'form': form})
return render_to_response(request,
'mediagoblin/edit/edit.html',
{'media': media,
'form': form})