summaryrefslogtreecommitdiff
path: root/boto/iam
diff options
context:
space:
mode:
authorgarnaat <mitch@garnaat.com>2011-03-29 15:44:35 -0400
committergarnaat <mitch@garnaat.com>2011-03-29 15:44:35 -0400
commita71ebb50c1541477c7d0715fce50d72a95657552 (patch)
tree564d6c531a2806aba07d2d7fd837eed061138255 /boto/iam
parent1915751f2787d994360948d47ccf49245e2d5d6b (diff)
downloadboto-a71ebb50c1541477c7d0715fce50d72a95657552.tar.gz
Fixed an issue with IAM responses no longer pythonizing the element names.
Diffstat (limited to 'boto/iam')
-rw-r--r--boto/iam/connection.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/boto/iam/connection.py b/boto/iam/connection.py
index 39ab704c..06caf073 100644
--- a/boto/iam/connection.py
+++ b/boto/iam/connection.py
@@ -54,7 +54,8 @@ class IAMConnection(AWSQueryConnection):
body = response.read()
boto.log.debug(body)
if response.status == 200:
- e = boto.jsonresponse.Element(list_marker=list_marker)
+ e = boto.jsonresponse.Element(list_marker=list_marker,
+ pythonize_name=True)
h = boto.jsonresponse.XmlHandler(e, parent)
h.parse(body)
return e