fix save arguments
This commit is contained in:
parent
8ef07dcf61
commit
b4d9f0ff7e
|
|
@ -256,8 +256,8 @@ class CustomResetPasswordForm(ResetPasswordForm):
|
|||
"""
|
||||
Override to use dynamic settings
|
||||
"""
|
||||
def save(self):
|
||||
email_address = super().save()
|
||||
def save(self, request):
|
||||
email_address = super().save(request)
|
||||
return email_address
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue