summaryrefslogtreecommitdiff
path: root/boto/iam
diff options
context:
space:
mode:
authorDaniel G. Taylor <dan@programmer-art.org>2014-07-09 14:24:08 -0700
committerDaniel G. Taylor <dan@programmer-art.org>2014-07-09 14:24:08 -0700
commit9e9427f8da55f88642545264a7e830566ce30fb2 (patch)
tree436cf8763d8813a2f1a43409d0d421276ca5e97b /boto/iam
parent6ecd7aeccd60be172131a559598cf9f459cdb482 (diff)
parentce7f9c0bb2045af78d9c232ff3301e77203abb82 (diff)
downloadboto-9e9427f8da55f88642545264a7e830566ce30fb2.tar.gz
Merge pull request #2338 from nanorepublica/patch-1
Correct list_saml_providers to return all items. Fixes #2338.
Diffstat (limited to 'boto/iam')
-rw-r--r--boto/iam/connection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/boto/iam/connection.py b/boto/iam/connection.py
index bf8f78b0..da242c2c 100644
--- a/boto/iam/connection.py
+++ b/boto/iam/connection.py
@@ -1440,7 +1440,7 @@ class IAMConnection(AWSQueryConnection):
Lists the SAML providers in the account.
This operation requires `Signature Version 4`_.
"""
- return self.get_response('ListSAMLProviders', {})
+ return self.get_response('ListSAMLProviders', {}, list_marker='SAMLProviderList')
def get_saml_provider(self, saml_provider_arn):
"""