1
0
mirror of https://github.com/django/django.git synced 2025-03-31 11:37:06 +00:00

Fixed #32829 -- Updated help text for clearsessions management command.

Obsolete since 5fec97b9df6ea075483276de159e522a29437773.
This commit is contained in:
Hasan Ramezani 2021-06-09 12:08:59 +02:00 committed by GitHub
parent 3e73c65ffc
commit ed3af3ff4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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):