Skip to content
Snippets Groups Projects
Unverified Commit fae81d62 authored by Andrey Shevchenko's avatar Andrey Shevchenko Committed by GitHub
Browse files

Fixed wrong path to CheckedIPAddress class

parent 66449a74
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