From 8ac20c168bf61a20af8da6783d516fee79b63f2d Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Thu, 15 Jan 2026 10:54:08 +0100 Subject: [PATCH] simplify message --- .../management/commands/teleforma-cleanup-private-documents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.39.5