Skip to content

Commit

Permalink
Remove network.py patch
Browse files Browse the repository at this point in the history
This is fixed via another PR (saltstack#51274)
  • Loading branch information
twangboy authored and Ch3LL committed Jan 23, 2019
1 parent d431c71 commit d2eba77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/utils/network.py
Expand Up @@ -1953,7 +1953,7 @@ def parse_host_port(host_port):
host = _s_
try:
if not isinstance(host, ipaddress._BaseAddress):
host_ip = ipaddress.ip_address(host).compressed
host_ip = ipaddress.ip_address(host)
host = host_ip
except ValueError:
log.debug('"%s" Not an IP address? Assuming it is a hostname.', host)
Expand Down

0 comments on commit d2eba77

Please sign in to comment.