diff options
Diffstat (limited to 'novaclient/v1_1/client.py')
-rw-r--r-- | novaclient/v1_1/client.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/novaclient/v1_1/client.py b/novaclient/v1_1/client.py index 15364089..ba3bf7ae 100644 --- a/novaclient/v1_1/client.py +++ b/novaclient/v1_1/client.py @@ -7,6 +7,7 @@ from novaclient.v1_1 import floating_ip_dns from novaclient.v1_1 import floating_ips from novaclient.v1_1 import floating_ip_pools from novaclient.v1_1 import hosts +from novaclient.v1_1 import hypervisors from novaclient.v1_1 import images from novaclient.v1_1 import keypairs from novaclient.v1_1 import limits @@ -76,6 +77,7 @@ class Client(object): virtual_interfaces.VirtualInterfaceManager(self) self.aggregates = aggregates.AggregateManager(self) self.hosts = hosts.HostManager(self) + self.hypervisors = hypervisors.HypervisorManager(self) # Add in any extensions... if extensions: |