diff options
| author | Ed Leafe <ed@leafe.com> | 2011-01-19 09:27:53 -0600 |
|---|---|---|
| committer | Ed Leafe <ed@leafe.com> | 2011-01-19 09:27:53 -0600 |
| commit | c4ecab260bed2118b119c7e415c2682e689fca3b (patch) | |
| tree | 734146d16976569db71c381db4a25e37efb6c72b /nova | |
| parent | ceb5f7ca02d46920c0f18372b8a8aabc0c423e31 (diff) | |
| download | nova-c4ecab260bed2118b119c7e415c2682e689fca3b.tar.gz nova-c4ecab260bed2118b119c7e415c2682e689fca3b.tar.xz nova-c4ecab260bed2118b119c7e415c2682e689fca3b.zip | |
minor code cleanup
Diffstat (limited to 'nova')
| -rw-r--r-- | nova/api/ec2/cloud.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/api/ec2/cloud.py b/nova/api/ec2/cloud.py index 2989d1ec3..cf3a5d2b3 100644 --- a/nova/api/ec2/cloud.py +++ b/nova/api/ec2/cloud.py @@ -841,8 +841,8 @@ class CloudController(object): if image_location is None and 'name' in kwargs: image_location = kwargs['name'] image_id = self.image_service.register(context, image_location) - msg = _("Registered image %(image_location)s" - " with id %(image_id)s") % locals() + msg = _("Registered image %(image_location)s with id %(image_id)s") + % locals() LOG.audit(msg, context=context) return {'imageId': image_id} |
