From 1ad9a198a2607f59409e891720a2e736241ba973 Mon Sep 17 00:00:00 2001 From: Akim Juillerat Date: Mon, 16 Dec 2019 13:39:17 +0100 Subject: [PATCH] Update attachment_s3/models/ir_attachment.py Co-Authored-By: Patrick Tombez <35060345+p-tombez@users.noreply.github.com> --- attachment_s3/models/ir_attachment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attachment_s3/models/ir_attachment.py b/attachment_s3/models/ir_attachment.py index c2263c5..993b1d5 100644 --- a/attachment_s3/models/ir_attachment.py +++ b/attachment_s3/models/ir_attachment.py @@ -123,7 +123,7 @@ class IrAttachment(models.Model): obj = bucket.Object(key=key) obj.Acl().put(ACL=acl) _logger.info( - "ACL public-read successfully set on object %s" % fname + "ACL %s successfully set on object %s" % (acl, fname) ) return True except ClientError: