From 64c035b39fe76bf07d8b12152d1f14574c9e4677 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 21 Jan 2016 12:37:50 -0800 Subject: [PATCH] Issue #5394: Wrong url for forgot_password in basic_auth plugin Fix by jerome. Thank you! --- mediagoblin/plugins/basic_auth/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mediagoblin/plugins/basic_auth/views.py b/mediagoblin/plugins/basic_auth/views.py index 95f91b4c..86d7eaef 100644 --- a/mediagoblin/plugins/basic_auth/views.py +++ b/mediagoblin/plugins/basic_auth/views.py @@ -63,7 +63,8 @@ def forgot_password(request): messages.add_message(request, messages.WARNING, _("Couldn't find someone with that username.")) - return redirect(request, 'mediagoblin.auth.forgot_password') + return redirect(request, + 'mediagoblin.plugins.basic_auth.forgot_password') success_message = _("An email has been sent with instructions " "on how to change your password.") -- 2.25.1