summaryrefslogtreecommitdiff
path: root/cloudinit/url_helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'cloudinit/url_helper.py')
-rw-r--r--cloudinit/url_helper.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/cloudinit/url_helper.py b/cloudinit/url_helper.py
index c69da1bb..1c583eba 100644
--- a/cloudinit/url_helper.py
+++ b/cloudinit/url_helper.py
@@ -59,11 +59,14 @@ class UrlResponse(object):
return str(self.contents)
def ok(self, redirects_ok=False):
+ upper = 300
if redirects_ok:
- return self.code in xrange(200, 400)
+ upper = 400
+ if self.code >= 200 and self.code < upper:
+ return True
else:
- return self.code in xrange(200, 300)
-
+ return False
+
def readurl(url, data=None, timeout=None,
retries=0, sec_between=1, headers=None):