diff options
| author | Rick Harris <rick.harris@rackspace.com> | 2011-03-23 07:18:01 +0000 |
|---|---|---|
| committer | Rick Harris <rick.harris@rackspace.com> | 2011-03-23 07:18:01 +0000 |
| commit | 3aba77c34a507bf8b7cae0ff87cf18a75bed11a8 (patch) | |
| tree | c0f744c7176fad57ab7a13cc40a80a09b60abec0 | |
| parent | e6d8c6774b8e2c78e4397e1548b9717fc8577dd5 (diff) | |
| download | nova-3aba77c34a507bf8b7cae0ff87cf18a75bed11a8.tar.gz nova-3aba77c34a507bf8b7cae0ff87cf18a75bed11a8.tar.xz nova-3aba77c34a507bf8b7cae0ff87cf18a75bed11a8.zip | |
Touching up comment
| -rw-r--r-- | nova/image/glance.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nova/image/glance.py b/nova/image/glance.py index d7aed4ef0..e138b34ab 100644 --- a/nova/image/glance.py +++ b/nova/image/glance.py @@ -22,12 +22,12 @@ from glance.common import exception as glance_exception from nova import exception from nova import flags -from nova import log +from nova import log as logging from nova import utils from nova.image import service -LOG = log.getLogger('nova.image.glance') +LOG = logging.getLogger('nova.image.glance') FLAGS = flags.FLAGS @@ -52,9 +52,9 @@ class GlanceImageService(service.BaseImageService): """ Calls out to Glance for a list of images available """ - # NOTE(sirp): We need to use get_images_detailed and not get_images - # here because we need `is_public` and properties included so we can - # filter by user + # NOTE(sirp): We need to use `get_images_detailed` and not + # `get_images` here because we need `is_public` and `properties` + # included so we can filter by user filtered = [] image_metas = self.client.get_images_detailed() for image_meta in image_metas: |
