summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/utils.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/nova/utils.py b/nova/utils.py
index 5c7d52c70..21e6221b2 100644
--- a/nova/utils.py
+++ b/nova/utils.py
@@ -851,7 +851,6 @@ def is_valid_ipv4(address):
"""valid the address strictly as per format xxx.xxx.xxx.xxx.
where xxx is a value between 0 and 255.
"""
-
parts = address.split(".")
if len(parts) != 4:
return False