From 5537b5d2ad1b4b23c308e6a656cd4b975ff61368 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Fri, 9 Sep 2016 13:19:28 -0700 Subject: [PATCH] Fix error message Real AWS does not include the trailing period on this message Change-Id: I3fb24e741375875080a6e86bb464e7f03019692b --- swift3/response.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift3/response.py b/swift3/response.py index 8f9cf0fa..6f9ef3cd 100644 --- a/swift3/response.py +++ b/swift3/response.py @@ -260,7 +260,7 @@ class BucketAlreadyOwnedByYou(ErrorResponse): class BucketNotEmpty(ErrorResponse): _status = '409 Conflict' - _msg = 'The bucket you tried to delete is not empty.' + _msg = 'The bucket you tried to delete is not empty' class CredentialsNotSupported(ErrorResponse):