aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ipaddress.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaddress.py b/ipaddress.py
index f2d0766..16f03bf 100644
--- a/ipaddress.py
+++ b/ipaddress.py
@@ -1103,7 +1103,7 @@ class _BaseNetwork(_IPAddressBase):
try:
# Always false if one is v4 and the other is v6.
if a._version != b._version:
- raise TypeError("%s and %s are not of the same version" (a, b))
+ raise TypeError("%s and %s are not of the same version" % (a, b))
return (b.network_address <= a.network_address and
b.broadcast_address >= a.broadcast_address)
except AttributeError: