summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpmoody@google.com <pmoody@google.com@09200d28-7f98-11dd-ad27-0f66e57d2035>2011-12-04 18:42:12 +0000
committerpmoody@google.com <pmoody@google.com@09200d28-7f98-11dd-ad27-0f66e57d2035>2011-12-04 18:42:12 +0000
commit563ec13fd9cfa5bb4058f4399b39fbe41e9a61df (patch)
treede8504edea3d6fed67fe14298c50d6e557c20e69
parent102a7e13c03bfbe84891d0debd7ae6074c411b9a (diff)
downloadipaddr-py-563ec13fd9cfa5bb4058f4399b39fbe41e9a61df.tar.gz
typo
git-svn-id: https://ipaddr-py.googlecode.com/svn@239 09200d28-7f98-11dd-ad27-0f66e57d2035
-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