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
No related branches found
No related tags found
No related merge requests found
......@@ -294,7 +294,7 @@ def main():
if installer.ip_addresses is not None:
for value in installer.ip_addresses:
try:
CheckedIPAddress(value)
ipautil.CheckedIPAddress(value)
except Exception as e:
ansible_module.fail_json(msg="invalid IP address {0}: {1}".format(
value, e))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment