From: Christopher Allan Webber Date: Fri, 12 Aug 2011 03:44:47 +0000 (-0500) Subject: PEP-8ing the keyword argument passing here X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=788272f30034fb2f917496197e317226d21aad2e;p=mediagoblin.git PEP-8ing the keyword argument passing here --- 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):