Image v2 Proxy should inhert from BaseProxy
One more Proxy slipped through the cracks Change-Id: Ia2f0217b0c4423ecf47d5de49aad7e42f969b202
This commit is contained in:
@@ -13,12 +13,10 @@
|
||||
from openstack.image.v2 import image
|
||||
from openstack.image.v2 import member
|
||||
from openstack.image.v2 import tag
|
||||
from openstack import proxy
|
||||
|
||||
|
||||
class Proxy(object):
|
||||
|
||||
def __init__(self, session):
|
||||
self.session = session
|
||||
class Proxy(proxy.BaseProxy):
|
||||
|
||||
def create_image(self, **data):
|
||||
return image.Image(data).create(self.session)
|
||||
|
||||
Reference in New Issue
Block a user