diff options
| author | Brian Waldon <brian.waldon@rackspace.com> | 2011-07-18 15:09:39 -0400 |
|---|---|---|
| committer | Brian Waldon <brian.waldon@rackspace.com> | 2011-07-18 15:09:39 -0400 |
| commit | 86fe4915eeb656abb2abb5fb3c6875a77443b105 (patch) | |
| tree | 7f8a03b7820d120c065506aae0d3b86ede18e0b9 | |
| parent | d101bb53cf310e1f093c46cdbdbe2c5b0207e49e (diff) | |
| download | nova-86fe4915eeb656abb2abb5fb3c6875a77443b105.tar.gz nova-86fe4915eeb656abb2abb5fb3c6875a77443b105.tar.xz nova-86fe4915eeb656abb2abb5fb3c6875a77443b105.zip | |
fixing bad lookup
| -rwxr-xr-x | bin/nova-manage | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/nova-manage b/bin/nova-manage index b892d958a..2446309e8 100755 --- a/bin/nova-manage +++ b/bin/nova-manage @@ -518,7 +518,7 @@ class FixedIpCommands(object): instance = fixed_ip['instance'] hostname = instance['hostname'] host = instance['host'] - mac_address = fixed_ip['mac_address']['address'] + mac_address = fixed_ip['virtual_interface']['address'] print "%-18s\t%-15s\t%-17s\t%-15s\t%s" % ( fixed_ip['network']['cidr'], fixed_ip['address'], |
