diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-02-02 21:01:59 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-02 21:01:59 +0100 |
| commit | 328d54f0b164fccbbecd67111040f6ef55760900 (patch) | |
| tree | 2afc9b691d752b45f228373840b0ae54ed677d04 | |
| parent | 8552eef95e400d5bad3261b28ad2500b57070d57 (diff) | |
[5.1.x] Refs #36140 -- Added missing import in django/contrib/auth/forms.py.
Follow up to 8552eef95e400d5bad3261b28ad2500b57070d57.
| -rw-r--r-- | django/contrib/auth/forms.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/contrib/auth/forms.py b/django/contrib/auth/forms.py index 3664673a5a..b547cf19f2 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -15,6 +15,7 @@ from django.utils.http import urlsafe_base64_encode from django.utils.text import capfirst from django.utils.translation import gettext from django.utils.translation import gettext_lazy as _ +from django.views.decorators.debug import sensitive_variables UserModel = get_user_model() logger = logging.getLogger("django.contrib.auth") |
