summaryrefslogtreecommitdiff
path: root/boto/mws
diff options
context:
space:
mode:
authorDaniel Lindsley <daniel@toastdriven.com>2013-10-21 15:28:24 -0700
committerDaniel Lindsley <daniel@toastdriven.com>2013-10-21 15:28:24 -0700
commit9e51f32e0598ee9c5071c3258a6986b7a0c291b2 (patch)
tree6aa3316bc635cebfd979bcdd0e7789bb1d66d95a /boto/mws
parentbfedb3fd788d63c954a5ddb5bd926ef8c44396af (diff)
downloadboto-9e51f32e0598ee9c5071c3258a6986b7a0c291b2.tar.gz
Added tests for the changes to MWS in #1374.
Diffstat (limited to 'boto/mws')
-rw-r--r--boto/mws/connection.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/boto/mws/connection.py b/boto/mws/connection.py
index 73df362a..3bf8dd83 100644
--- a/boto/mws/connection.py
+++ b/boto/mws/connection.py
@@ -261,6 +261,11 @@ class MWSConnection(AWSQueryConnection):
and return the response, optionally as raw text.
Modelled off of the inherited get_object/make_request flow.
"""
+ # TODO: This is using ``self.server_name()``, which is a deprecated
+ # call post-SHA: 789ace9. It likely should be ``self.host``,
+ # but I lack MWS credentials to verify.
+ # If you have them, you're here & you know what you're doing,
+ # please update this & test that fix.
request = self.build_base_http_request('POST', path, None, data=body,
params=params, headers=headers,
host=self.server_name())