summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Kearney <josh@jk0.org>2011-06-23 16:19:08 -0500
committerJosh Kearney <josh@jk0.org>2011-06-23 16:19:08 -0500
commite3c1a6742b16add04d76631b9dbd4f2ef016e0b3 (patch)
tree7e885aee65cc55ee106bd44895f69206b45eef3d
parent2028222a5ed47dc82b49f51969d237c4eece50e7 (diff)
downloadnova-e3c1a6742b16add04d76631b9dbd4f2ef016e0b3.tar.gz
nova-e3c1a6742b16add04d76631b9dbd4f2ef016e0b3.tar.xz
nova-e3c1a6742b16add04d76631b9dbd4f2ef016e0b3.zip
PEP8 cleanup.
-rw-r--r--nova/compute/manager.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/compute/manager.py b/nova/compute/manager.py
index d0ca1ff0d..4bd7d434e 100644
--- a/nova/compute/manager.py
+++ b/nova/compute/manager.py
@@ -527,7 +527,8 @@ class ComputeManager(manager.SchedulerDependentManager):
filters = {'property-image_type': image_type,
'property-instance_uuid': instance_uuid}
images = image_service.detail(context, filters=filters)
- LOG.debug(_("Found %d images (rotation: %d)" % (len(images), rotation)))
+ LOG.debug(_("Found %d images (rotation: %d)" %
+ (len(images), rotation)))
if len(images) > rotation:
# Sort oldest (by created_at) to end of list
images.sort(key=itemgetter('created_at'), reverse=True)