From 3326628ca8da78f75b017afd214533904471474a Mon Sep 17 00:00:00 2001 From: Michael Still Date: Sat, 18 Feb 2012 10:07:06 +1100 Subject: Resolve bug/934566. Change-Id: I09934034527367e731d9ba09dcb860922e2b5017 --- nova/virt/libvirt/imagecache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/virt/libvirt/imagecache.py b/nova/virt/libvirt/imagecache.py index e8d448337..6e5581d84 100644 --- a/nova/virt/libvirt/imagecache.py +++ b/nova/virt/libvirt/imagecache.py @@ -365,7 +365,7 @@ class ImageCacheManager(object): fingerprint = hashlib.sha1(str(img['id'])).hexdigest() for result in self._find_base_file(base_dir, fingerprint): - base_file, image_small, image_resized = res + base_file, image_small, image_resized = result self._handle_base_image(img, base_file) if not image_small and not image_resized: -- cgit