diff options
| author | Hasan Ramezani <hasan.r67@gmail.com> | 2021-06-09 12:08:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-09 12:08:59 +0200 |
| commit | ed3af3ff4b3cfb72de598f1b39a1028ba3826efb (patch) | |
| tree | 044bead034eba3c332ce75cd75736435127c8086 | |
| parent | 3e73c65ffcf263d5ccd107589452a4615281a0e8 (diff) | |
Fixed #32829 -- Updated help text for clearsessions management command.
Obsolete since 5fec97b9df6ea075483276de159e522a29437773.
| -rw-r--r-- | django/contrib/sessions/management/commands/clearsessions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/sessions/management/commands/clearsessions.py b/django/contrib/sessions/management/commands/clearsessions.py index 2d6224775c..899f537986 100644 --- a/django/contrib/sessions/management/commands/clearsessions.py +++ b/django/contrib/sessions/management/commands/clearsessions.py @@ -7,7 +7,7 @@ from django.core.management.base import BaseCommand, CommandError class Command(BaseCommand): help = ( "Can be run as a cronjob or directly to clean out expired sessions " - "(only with the database backend at the moment)." + "when the backend supports it." ) def handle(self, **options): |
