diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-06-26 12:53:02 -0700 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-07-03 13:49:16 -0500 |
commit | d66f79031e07447ab22cb19a610f388ff85ce249 (patch) | |
tree | cfd4782a114eeecbc67676bb101d4a6d4c24e162 | |
parent | ef146456b1a2648b9f137593f0a551d16a69965a (diff) | |
download | mediagoblin-d66f79031e07447ab22cb19a610f388ff85ce249.tar.lz mediagoblin-d66f79031e07447ab22cb19a610f388ff85ce249.tar.xz mediagoblin-d66f79031e07447ab22cb19a610f388ff85ce249.zip |
forgot to pass request.form into LoginForm class
-rw-r--r-- | mediagoblin/plugins/openid/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/plugins/openid/views.py b/mediagoblin/plugins/openid/views.py index b95144d0..9566e38e 100644 --- a/mediagoblin/plugins/openid/views.py +++ b/mediagoblin/plugins/openid/views.py @@ -138,7 +138,7 @@ def _response_nickname(response): @auth_enabled def login(request): """OpenID Login View""" - login_form = auth_forms.LoginForm(request) + login_form = auth_forms.LoginForm(request.form) allow_registration = mg_globals.app_config["allow_registration"] # Can't store next in request.GET because of redirects to OpenID provider |