resync charmhelper

This commit is contained in:
yolanda.robla@canonical.com 2014-03-12 13:10:19 +01:00
parent 7cdef5f217
commit c20b69b12c
2 changed files with 13 additions and 13 deletions

View File

@ -420,9 +420,7 @@ def get_hostname(address, fqdn=True):
Resolves hostname for given IP, or returns the input
if it is already a hostname.
"""
if not is_ip(address):
return address
if is_ip(address):
try:
import dns.reversename
except ImportError:
@ -433,6 +431,8 @@ def get_hostname(address, fqdn=True):
result = ns_query(rev)
if not result:
return None
else:
result = address
if fqdn:
# strip trailing .

View File

@ -1 +1 @@
43
44