Fix string formatting

Some strings were being formatted incorrectly with incorrect
argument names or numbers.

Change-Id: Ic893a02e587334c8838f74d34ff383470b6149c8
This commit is contained in:
David Shrewsbury 2016-04-18 16:11:59 -04:00
parent 395cf48cbf
commit fba72070e0
2 changed files with 3 additions and 3 deletions

View File

@ -2460,7 +2460,7 @@ class OpenStackCloud(object):
self.manager.submitTask(_tasks.ImageUpload(
image_id=image.id, image_data=image_data))
except Exception:
self.log.debug("Deleting failed upload of image {name}".format(
self.log.debug("Deleting failed upload of image {image}".format(
image=image['name']))
self.manager.submitTask(_tasks.ImageDelete(image_id=image.id))
raise
@ -2474,7 +2474,7 @@ class OpenStackCloud(object):
self.manager.submitTask(_tasks.ImageUpdate(
image=image, data=image_data))
except Exception:
self.log.debug("Deleting failed upload of image {name}".format(
self.log.debug("Deleting failed upload of image {image}".format(
image=image['name']))
self.manager.submitTask(_tasks.ImageDelete(image_id=image.id))
raise

View File

@ -1524,7 +1524,7 @@ class OperatorCloud(openstackcloud.OpenStackCloud):
_tasks.FlavorUnsetExtraSpecs(id=flavor_id, key=key))
except Exception as e:
raise OpenStackCloudException(
"Unable to delete flavor spec {0}: {0}".format(
"Unable to delete flavor spec {0}: {1}".format(
key, str(e)))
def _mod_flavor_access(self, action, flavor_id, project_id):