summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--branches/3144/ipaddr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/branches/3144/ipaddr.py b/branches/3144/ipaddr.py
index 87b7597..79345ce 100644
--- a/branches/3144/ipaddr.py
+++ b/branches/3144/ipaddr.py
@@ -584,7 +584,7 @@ class _BaseInterface(_IPAddrBase):
or broadcast addresses.
"""
- cur = int(self.network_address_address) + 1
+ cur = int(self.network_address) + 1
bcast = int(self.broadcast_address) - 1
while cur <= bcast:
cur += 1