I have a strong preference for aligning all parameters in a function call.

This commit is contained in:
Christopher Allan Webber
2011-06-05 15:41:08 -05:00
parent a7fcc027aa
commit 9038c9f9ac
5 changed files with 24 additions and 15 deletions

View File

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