mirror of
https://opendev.org/openstack/python-openstackclient.git
synced 2026-01-17 07:20:45 +00:00
Merge "Glance client no longer isa http client"
This commit is contained in:
commit
2958421755
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ class Client_v1(gc_v1_client.Client):
|
|||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(Client_v1, self).__init__(*args, **kwargs)
|
||||
self.images = ImageManager_v1(self)
|
||||
self.images = ImageManager_v1(getattr(self, 'http_client', self))
|
||||
|
||||
|
||||
class ImageManager_v1(gc_v1_images.ImageManager):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue