From: Guillaume Pellerin Date: Thu, 15 Jan 2026 09:51:26 +0000 (+0100) Subject: fix print pk X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=0ff4b857e9d8e2fcf0569ef1ba692280cbc9f88d;p=teleforma.git fix print pk --- diff --git a/teleforma/management/commands/teleforma-cleanup-private-documents.py b/teleforma/management/commands/teleforma-cleanup-private-documents.py index 5238a661..a0913397 100644 --- a/teleforma/management/commands/teleforma-cleanup-private-documents.py +++ b/teleforma/management/commands/teleforma-cleanup-private-documents.py @@ -17,4 +17,4 @@ class Command(BaseCommand): print("num of docs: ", documents.count()) for document in documents: document.delete() - print(document.id, "deleted") + print(document.pk, "deleted")