Replace to_string by to_unicode.
Fix https://github.com/ansible/ansible/issues/13707
This commit is contained in:
parent
34b78639b7
commit
c4d2dbfcdb
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class Inventory(object):
|
||||||
try:
|
try:
|
||||||
(host, port) = parse_address(h, allow_ranges=False)
|
(host, port) = parse_address(h, allow_ranges=False)
|
||||||
except AnsibleError as e:
|
except AnsibleError as e:
|
||||||
display.vvv("Unable to parse address from hostname, leaving unchanged: %s" % to_string(e))
|
display.vvv("Unable to parse address from hostname, leaving unchanged: %s" % to_unicode(e))
|
||||||
host = h
|
host = h
|
||||||
port = None
|
port = None
|
||||||
all.add_host(Host(host, port))
|
all.add_host(Host(host, port))
|
||||||
|
|
Loading…
Reference in a new issue