diff options
author | Brian Waldon <brian.waldon@rackspace.com> | 2011-07-20 16:23:10 +0000 |
---|---|---|
committer | Tarmac <> | 2011-07-20 16:23:10 +0000 |
commit | b76d31cf6be76f9ece78d2377c0cbad0cb10c584 (patch) | |
tree | b94ae9c84b14a3f1353bef657ad42765123e9a4f | |
parent | 1f8c3f1477eb5856dccb5d7bcdaa4cd5981174c8 (diff) | |
parent | 86fe4915eeb656abb2abb5fb3c6875a77443b105 (diff) | |
download | nova-b76d31cf6be76f9ece78d2377c0cbad0cb10c584.tar.gz nova-b76d31cf6be76f9ece78d2377c0cbad0cb10c584.tar.xz nova-b76d31cf6be76f9ece78d2377c0cbad0cb10c584.zip |
Corrects a bad model lookup in nova-manage
-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'], |