summaryrefslogtreecommitdiff
path: root/dns/ipv6.py
diff options
context:
space:
mode:
Diffstat (limited to 'dns/ipv6.py')
-rw-r--r--dns/ipv6.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/dns/ipv6.py b/dns/ipv6.py
index 49ef556..db1e9c9 100644
--- a/dns/ipv6.py
+++ b/dns/ipv6.py
@@ -117,8 +117,9 @@ def inet_aton(text):
m = _v4_ending.match(text)
if not m is None:
b = bytearray(dns.ipv4.inet_aton(m.group(2)))
- text = (u"%s:%02x%02x:%02x%02x" % (m.group(1).decode(), b[0], b[1],
- b[2], b[3])).encode()
+ text = (u"{}:{:02x}{:02x}:{:02x}{:02x}".format(m.group(1).decode(),
+ b[0], b[1], b[2],
+ b[3])).encode()
#
# Try to turn '::<whatever>' into ':<whatever>'; if no match try to
# turn '<whatever>::' into '<whatever>:'