You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename BaseLoginForm.get_context to avoid clash with Django internals (#40)
In Django 4.0 `forms.Form.get_context` was introduced for passing form context in templates.
https://docs.djangoproject.com/en/4.0/ref/forms/api/#django.forms.Form.get_context
Due to this we have a clash, as django-mail-auth uses function with the same name, but for different purpose:
```python
BaseLoginForm.get_context() missing 2 required positional arguments: 'request' and 'user'
```
0 commit comments