Fix string arguments in a call to logger.info

Change-Id: I7302a223d0cf7e4a8d4d77e17e8bfd75e564ed0c
This commit is contained in:
Luigi Toscano 2017-02-07 19:08:04 +01:00
parent 088ec97bf0
commit a9f15a7fdc
1 changed files with 1 additions and 1 deletions

View File

@ -809,7 +809,7 @@ def _download_file(url, destination):
def _download_image(client, id, path):
"""Download file from glance."""
LOG.info("Downloading image %s to %s", (id, path))
LOG.info("Downloading image %s to %s", id, path)
body = client.show_image_file(id)
LOG.debug(type(body.data))
with open(path, 'wb') as out: