summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Ball <43632885+catleeball@users.noreply.github.com>2019-03-27 16:52:33 -0700
committerGitHub <noreply@github.com>2019-03-27 16:52:33 -0700
commit3f225ea12252960e9c09a42d90b6c2bcade67f46 (patch)
tree9f2484cdfb435835c2b60db30aea202da6e4578b
parent81a0ab5bba3ffefbe7604b05dfe1de3a44d2df32 (diff)
downloadboto-3f225ea12252960e9c09a42d90b6c2bcade67f46.tar.gz
Re-add get_utf8_value interface with get_utf8able_str implementation
-rw-r--r--boto/connection.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/boto/connection.py b/boto/connection.py
index 3f0c53e8..894bd811 100644
--- a/boto/connection.py
+++ b/boto/connection.py
@@ -1106,6 +1106,15 @@ class AWSQueryConnection(AWSAuthConnection):
return []
+ def get_utf8_value(self, value):
+ """This replaces public interface get_utf8_value with new implementation.
+
+ The old implementation of get_utf8_value has been deprecated and replaced
+ with get_utf8able_str.
+ """
+ return boto.utils.get_utf8able_str(value)
+
+
def make_request(self, action, params=None, path='/', verb='GET'):
http_request = self.build_base_http_request(verb, path, None,
params, {}, '',