From bf8d9da95b01f460d176c043a15bee695d187cdc Mon Sep 17 00:00:00 2001 From: Brian Curtin Date: Wed, 11 Mar 2015 23:15:23 -0500 Subject: [PATCH] Image v2 Proxy should inhert from BaseProxy One more Proxy slipped through the cracks Change-Id: Ia2f0217b0c4423ecf47d5de49aad7e42f969b202 --- openstack/image/v2/_proxy.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/openstack/image/v2/_proxy.py b/openstack/image/v2/_proxy.py index cbf9d0b2..9d6748fd 100644 --- a/openstack/image/v2/_proxy.py +++ b/openstack/image/v2/_proxy.py @@ -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)