summaryrefslogtreecommitdiff
path: root/boto/gs/bucket.py
diff options
context:
space:
mode:
Diffstat (limited to 'boto/gs/bucket.py')
-rw-r--r--boto/gs/bucket.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/boto/gs/bucket.py b/boto/gs/bucket.py
index 01ac0839..2777e829 100644
--- a/boto/gs/bucket.py
+++ b/boto/gs/bucket.py
@@ -40,7 +40,7 @@ from boto.gs.lifecycle import LifecycleConfig
from boto.gs.key import Key as GSKey
from boto.s3.acl import Policy
from boto.s3.bucket import Bucket as S3Bucket
-from boto.utils import get_utf8_value
+from boto.utils import get_utf8able_str
from boto.compat import quote
from boto.compat import six
@@ -644,7 +644,7 @@ class Bucket(S3Bucket):
:param str storage_class: A string containing the storage class.
:param dict headers: Additional headers to send with the request.
"""
- req_body = self.StorageClassBody % (get_utf8_value(storage_class))
+ req_body = self.StorageClassBody % (get_utf8able_str(storage_class))
self.set_subresource(STORAGE_CLASS_ARG, req_body, headers=headers)
# Method with same signature as boto.s3.bucket.Bucket.add_email_grant(),
@@ -883,7 +883,7 @@ class Bucket(S3Bucket):
body = self.WebsiteBody % (main_page_frag, error_frag)
response = self.connection.make_request(
- 'PUT', get_utf8_value(self.name), data=get_utf8_value(body),
+ 'PUT', get_utf8able_str(self.name), data=get_utf8able_str(body),
query_args='websiteConfig', headers=headers)
body = response.read()
if response.status == 200: