diff options
| author | William Wolf <will.wolf@rackspace.com> | 2011-05-05 15:37:53 -0400 |
|---|---|---|
| committer | William Wolf <will.wolf@rackspace.com> | 2011-05-05 15:37:53 -0400 |
| commit | 92294ab9b63ecac5baff3c01582faaba63e3b0b1 (patch) | |
| tree | 8b845358ec036f258836a1749d72d491f258bd0f | |
| parent | 114a55d0243f79db7ea1ef29830a9428dbf1aa33 (diff) | |
fixed issue with non-existent variable being passed to ImageNotFound exception
| -rw-r--r-- | nova/image/local.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/image/local.py b/nova/image/local.py index b6d8f3ba1..918180bae 100644 --- a/nova/image/local.py +++ b/nova/image/local.py @@ -102,7 +102,7 @@ class LocalImageService(service.BaseImageService): image = cantidate break if image is None: - raise exception.ImageNotFound(image_id=image_id) + raise exception.ImageNotFound(image_id=name) return image def get(self, context, image_id, data): |
