From 0dbbe5d7f504ffd56c660a77c7fae18f75350357 Mon Sep 17 00:00:00 2001 From: CracktheDom <85846263+CracktheDom@users.noreply.github.com> Date: Tue, 22 Oct 2024 23:27:33 -0500 Subject: [PATCH] Correct typo in error in S3._http_400_handler() --- S3/S3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/S3/S3.py b/S3/S3.py index d4cac8f9..53942b20 100644 --- a/S3/S3.py +++ b/S3/S3.py @@ -1621,7 +1621,7 @@ def _http_400_handler(self, request, response, fn, *args, **kwargs): info('Forwarding request to %s', region) return fn(*args, **kwargs) else: - warning(u'Could not determine bucket the location. Please consider using the --region parameter.') + warning(u'Could not determine the bucket location. Please consider using the --region parameter.') elif failureCode == 'InvalidRequest': message = getTextFromXml(response['data'], 'Message')