diff options
author | Mitch Garnaat <mitch@garnaat.com> | 2012-10-19 08:05:45 -0700 |
---|---|---|
committer | Mitch Garnaat <mitch@garnaat.com> | 2012-10-19 08:05:45 -0700 |
commit | f2412dd413632571c2fdce93ff5d5968d0ced2a2 (patch) | |
tree | 5c12d247a5e5733f0b10e5e2ed5fdb39f6b219b6 /boto/mws | |
parent | 8e1b6b81dbc70f1bd752b4331f2010357b640ee9 (diff) | |
parent | 6531a5f08700239b23e2ab78e240801440dca513 (diff) | |
download | boto-f2412dd413632571c2fdce93ff5d5968d0ced2a2.tar.gz |
Merge pull request #1067 from Threadless/mws-report-request-info-list
use ElementList instead of Element for boto.mws.response.GetReportReques...
Diffstat (limited to 'boto/mws')
-rw-r--r-- | boto/mws/response.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/mws/response.py b/boto/mws/response.py index 2eed7d26..06740b56 100644 --- a/boto/mws/response.py +++ b/boto/mws/response.py @@ -275,7 +275,7 @@ class RequestReportResult(ResponseElement): class GetReportRequestListResult(RequestReportResult): - ReportRequestInfo = Element() + ReportRequestInfo = ElementList() class GetReportRequestListByNextTokenResult(GetReportRequestListResult): |