summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Ball <43632885+catleeball@users.noreply.github.com>2019-03-27 17:04:27 -0700
committerGitHub <noreply@github.com>2019-03-27 17:04:27 -0700
commit0165f94bcde65ee08289d81013c1e48437bb7825 (patch)
treec50aad376a5855f548f264462cd6c84d6b06baf6
parent67d878cf5fcdffe11d5a9ccc5dac7d78f6d24752 (diff)
downloadboto-0165f94bcde65ee08289d81013c1e48437bb7825.tar.gz
Back to the old implementation
-rw-r--r--boto/connection.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/boto/connection.py b/boto/connection.py
index 894bd811..a0d89a51 100644
--- a/boto/connection.py
+++ b/boto/connection.py
@@ -1107,12 +1107,7 @@ class AWSQueryConnection(AWSAuthConnection):
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)
+ return boto.utils.get_utf8_value(value)
def make_request(self, action, params=None, path='/', verb='GET'):