mirror of https://github.com/django/django.git
Fixed #32829 -- Updated help text for clearsessions management command.
Obsolete since 5fec97b9df
.
This commit is contained in:
parent
3e73c65ffc
commit
ed3af3ff4b
|
@ -7,7 +7,7 @@ from django.core.management.base import BaseCommand, CommandError
|
||||||
class Command(BaseCommand):
|
class Command(BaseCommand):
|
||||||
help = (
|
help = (
|
||||||
"Can be run as a cronjob or directly to clean out expired sessions "
|
"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):
|
def handle(self, **options):
|
||||||
|
|
Loading…
Reference in New Issue