aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-08-11 22:44:47 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-08-11 22:44:47 -0500
commit788272f30034fb2f917496197e317226d21aad2e (patch)
tree96ba34c68a78f398bea2c4135547ff0ebaabb436
parente7f518cc9478c8387846a27599288c7aed0a9637 (diff)
downloadmediagoblin-788272f30034fb2f917496197e317226d21aad2e.tar.lz
mediagoblin-788272f30034fb2f917496197e317226d21aad2e.tar.xz
mediagoblin-788272f30034fb2f917496197e317226d21aad2e.zip
PEP-8ing the keyword argument passing here
-rw-r--r--mediagoblin/auth/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/auth/views.py b/mediagoblin/auth/views.py
index 55f42141..9120196f 100644
--- a/mediagoblin/auth/views.py
+++ b/mediagoblin/auth/views.py
@@ -166,7 +166,7 @@ def verify_email(request):
return redirect(
request, 'mediagoblin.user_pages.user_home',
- user = user['username'])
+ user=user['username'])
def resend_activation(request):