Merge "Fix string arguments in a call to logger.info"

This commit is contained in:
Daniel Mellado 2017-02-28 08:07:18 -05:00 committed by Gerrit Code Review
commit 4a2fcbac37
1 changed files with 1 additions and 1 deletions

View File

@ -811,7 +811,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: