From e1a093f8cba66574ce516a7510ded5196cdc6416 Mon Sep 17 00:00:00 2001 From: touhf <108483908+touhf@users.noreply.github.com> Date: Fri, 20 Jan 2023 16:58:51 +0500 Subject: [PATCH] Added short description to remove_stale_contenttypes command. --- .../management/commands/remove_stale_contenttypes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py b/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py index eccd3aa2c9..51de847dbf 100644 --- a/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py +++ b/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py @@ -8,6 +8,8 @@ from django.db.models.deletion import Collector class Command(BaseCommand): + help = "Deletes stale content types in the database." + def add_arguments(self, parser): parser.add_argument( "--noinput",