From: Guillaume Pellerin Date: Thu, 15 Jan 2026 09:54:08 +0000 (+0100) Subject: simplify message X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=8ac20c168bf61a20af8da6783d516fee79b63f2d;p=teleforma.git simplify message --- diff --git a/teleforma/management/commands/teleforma-cleanup-private-documents.py b/teleforma/management/commands/teleforma-cleanup-private-documents.py index d1950ac9..63b5ed1e 100644 --- a/teleforma/management/commands/teleforma-cleanup-private-documents.py +++ b/teleforma/management/commands/teleforma-cleanup-private-documents.py @@ -14,6 +14,6 @@ class Command(BaseCommand): days = int(args[0]) date_limit = datetime.today() - timedelta(days=days) documents = DocumentPrivate.objects.filter(date_added__lte=date_limit) - print("deleting ", documents.count(), " private documents...") + print("deleting", documents.count(), "private documents...") for document in documents: document.delete()