diff options
author | Michael Elkins <melkins@tislabs.com> | 2011-09-20 22:23:33 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2011-09-20 22:23:33 +0000 |
commit | 4b318b5bca7427b149a71d0f9a828ffef0997db3 (patch) | |
tree | 2c9b463cfb8e8277697a948bc0aa1d72612fea25 /rpkid | |
parent | c9a1cc3237d11d5cbf81ef609232ce63cbf5a2ac (diff) |
fix botch where a child's prefixes were passed instead of asns
svn path=/rpkid/rpki/gui/app/glue.py; revision=3994
Diffstat (limited to 'rpkid')
-rw-r--r-- | rpkid/rpki/gui/app/glue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/rpki/gui/app/glue.py b/rpkid/rpki/gui/app/glue.py index f4947e06..e99aa837 100644 --- a/rpkid/rpki/gui/app/glue.py +++ b/rpkid/rpki/gui/app/glue.py @@ -142,7 +142,7 @@ def configure_resources(log, handle): children = [] for child in handle.children.all(): - asns = rpki.resource_set.resource_set_as([a.as_resource_range() for a in child.address_range.all()]) + asns = rpki.resource_set.resource_set_as([a.as_resource_range() for a in child.asn.all()]) v4 = rpki.resource_set.resource_set_ipv4() v6 = rpki.resource_set.resource_set_ipv6() |