summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2016-05-13 09:44:00 -0500
committerMatt Martz <matt@sivel.net>2016-05-13 09:44:00 -0500
commit878b0dca6826fdfabf5c639d3252cdcc738e4546 (patch)
tree2f87ef2035e317bde6db45bef2f33ff555d34366
parentd2bade6dafee19d7d010e8f18744f02409864980 (diff)
downloadansible-878b0dca6826fdfabf5c639d3252cdcc738e4546.tar.gz
Use .code instead of .getcode() as py24 does not have .getcode(). Fixes https://github.com/ansible/ansible-modules-core/issues/3608
-rw-r--r--lib/ansible/module_utils/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/module_utils/urls.py b/lib/ansible/module_utils/urls.py
index ec8484a52f..01da3c038b 100644
--- a/lib/ansible/module_utils/urls.py
+++ b/lib/ansible/module_utils/urls.py
@@ -893,7 +893,7 @@ def fetch_url(module, url, data=None, headers=None, method=None,
url_password=password, http_agent=http_agent, force_basic_auth=force_basic_auth,
follow_redirects=follow_redirects)
info.update(r.info())
- info.update(dict(msg="OK (%s bytes)" % r.headers.get('Content-Length', 'unknown'), url=r.geturl(), status=r.getcode()))
+ info.update(dict(msg="OK (%s bytes)" % r.headers.get('Content-Length', 'unknown'), url=r.geturl(), status=r.code))
except NoSSLError:
e = get_exception()
distribution = get_distribution()