lint pep8

This commit is contained in:
Jeremy McMillan 2019-01-05 12:05:47 -06:00 committed by Pedro Algarvio
parent 15c6deba62
commit 42c710e4d1

View file

@ -1340,7 +1340,7 @@ def hex2ip(hex_ip, invert=False):
try:
return ipaddress.IPv6Address(":".join(ip)).compressed
except ipaddress.AddressValueError as ex:
log.error("hex2ip - ipv6 address error: {0}".format(ex))
log.error("hex2ip - ipv6 address error: %s", ex)
return hex_ip
try: