]> git.parisson.com Git - teleforma.git/commitdiff
simplify message
authorGuillaume Pellerin <yomguy@parisson.com>
Thu, 15 Jan 2026 09:54:08 +0000 (10:54 +0100)
committerGuillaume Pellerin <yomguy@parisson.com>
Thu, 15 Jan 2026 09:54:08 +0000 (10:54 +0100)
teleforma/management/commands/teleforma-cleanup-private-documents.py

index d1950ac9f5d90ee7971ad5a33d1edafa809a4a02..63b5ed1e544640827700b6596c266dc373dcf550 100644 (file)
@@ -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()