diff options
author | Scott Moser <smoser@ubuntu.com> | 2014-01-29 14:31:47 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2014-01-29 14:31:47 -0500 |
commit | 29b56e5ad6a5ec0eedbedcc598f633b1f5302a8a (patch) | |
tree | abd870b2d6830fb6c81dc633e8098484b63b8b47 /cloudinit | |
parent | 1ed5098069f4fd5c798914b942cea7b87bd1afe3 (diff) | |
parent | 06c80d8b0dcb8cf1013885fc745bf48d57b39ce4 (diff) | |
download | vyos-cloud-init-29b56e5ad6a5ec0eedbedcc598f633b1f5302a8a.tar.gz vyos-cloud-init-29b56e5ad6a5ec0eedbedcc598f633b1f5302a8a.zip |
merge from trunk
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/util.py b/cloudinit/util.py index c0121848..08cdd8c8 100644 --- a/cloudinit/util.py +++ b/cloudinit/util.py @@ -369,7 +369,7 @@ def is_ipv4(instr): return False try: - toks = [x for x in toks if int(x) < 256 and int(x) > 0] + toks = [x for x in toks if int(x) < 256 and int(x) >= 0] except: return False |