From 7c6ee551157bb01ba89c0077cd0ef7658c79c86d Mon Sep 17 00:00:00 2001 From: Taha Yassine Kraiem Date: Thu, 20 Oct 2022 11:02:56 +0200 Subject: [PATCH] feat(chalice): changes --- api/chalicelib/utils/s3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/chalicelib/utils/s3.py b/api/chalicelib/utils/s3.py index f3c580e90..3a86924ea 100644 --- a/api/chalicelib/utils/s3.py +++ b/api/chalicelib/utils/s3.py @@ -70,7 +70,7 @@ def get_file(source_bucket, source_key): ) except ClientError as ex: if ex.response['Error']['Code'] == 'NoSuchKey': - print(f'======> No object found - returning None for \nbucket:{source_bucket}\nkey:{source_key}') + print(f'======> No object found - returning None for bucket:{source_bucket} key:{source_key}') return None else: raise ex