Image v2 Proxy should inhert from BaseProxy

One more Proxy slipped through the cracks

Change-Id: Ia2f0217b0c4423ecf47d5de49aad7e42f969b202
This commit is contained in:
Brian Curtin
2015-03-11 23:15:23 -05:00
parent d0731cfc33
commit bf8d9da95b

View File

@@ -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)