From 7a1dd74a0f08af18977eb576fdd04f69bd6ab357 Mon Sep 17 00:00:00 2001 From: Jose Antonio Gonzalez Date: Fri, 24 Nov 2017 15:54:42 +0200 Subject: [PATCH] dont redefine post method [ci skip] --- lms/djangoapps/student_account/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/student_account/views.py b/lms/djangoapps/student_account/views.py index 70c9c8c08e..8979f7b80e 100644 --- a/lms/djangoapps/student_account/views.py +++ b/lms/djangoapps/student_account/views.py @@ -613,7 +613,7 @@ class RecoverPasswordView(views.APIView): HttpResponse: 405 if using an unsupported HTTP method """ - def post(self, request, format=None): + def post(self, request, *args, **kwargs): """ Makes the request to change the password """