Skip to content
Snippets Groups Projects
Unverified Commit a33c832b authored by Thomas Woerner's avatar Thomas Woerner Committed by GitHub
Browse files

Merge pull request #96 from aniro/master

Fixed wrong path to CheckedIPAddress class
parents 66449a74 fae81d62
Branches
Tags
No related merge requests found
...@@ -294,7 +294,7 @@ def main(): ...@@ -294,7 +294,7 @@ def main():
if installer.ip_addresses is not None: if installer.ip_addresses is not None:
for value in installer.ip_addresses: for value in installer.ip_addresses:
try: try:
CheckedIPAddress(value) ipautil.CheckedIPAddress(value)
except Exception as e: except Exception as e:
ansible_module.fail_json(msg="invalid IP address {0}: {1}".format( ansible_module.fail_json(msg="invalid IP address {0}: {1}".format(
value, e)) value, e))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment