diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-11 22:44:47 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-08-11 22:44:47 -0500 |
commit | 788272f30034fb2f917496197e317226d21aad2e (patch) | |
tree | 96ba34c68a78f398bea2c4135547ff0ebaabb436 | |
parent | e7f518cc9478c8387846a27599288c7aed0a9637 (diff) | |
download | mediagoblin-788272f30034fb2f917496197e317226d21aad2e.tar.lz mediagoblin-788272f30034fb2f917496197e317226d21aad2e.tar.xz mediagoblin-788272f30034fb2f917496197e317226d21aad2e.zip |
PEP-8ing the keyword argument passing here
-rw-r--r-- | mediagoblin/auth/views.py | 2 |
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): |