remove unused and buggy function from baremetal proxy

* nova/virt/baremetal/proxy.py (_fetch_image): This function
reference 'images' which is undefined.  So just remove it
as it's unused.

Change-Id: I7016f6e8a68fefab4342adadd032e93f963a074e
This commit is contained in:
Pádraig Brady 2012-02-10 15:18:50 +00:00
parent 3e655eeab0
commit 1b5ac0b767

@ -335,11 +335,6 @@ class ProxyConnection(driver.ComputeDriver):
else:
libvirt_utils.copy_image(base, target)
def _fetch_image(self, context, target, image_id, user_id, project_id,
size=None):
"""Grab image and optionally attempt to resize it"""
images.fetch_to_raw(context, image_id, target, user_id, project_id)
def _create_image(self, context, inst, xml, suffix='',
disk_images=None, network_info=None,
block_device_info=None):