2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-30 04:26:44 +00:00

fix save arguments

This commit is contained in:
Matthias 2021-10-07 17:11:47 +02:00
parent 8ef07dcf61
commit b4d9f0ff7e
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -256,8 +256,8 @@ class CustomResetPasswordForm(ResetPasswordForm):
""" """
Override to use dynamic settings Override to use dynamic settings
""" """
def save(self): def save(self, request):
email_address = super().save() email_address = super().save(request)
return email_address return email_address