Fixed naming issue of variable in a debug statement formatting

Closes-bug: 1275802

Change-Id: I5bf57290ff3023f6d3332a92114cc4f235e1f4af
This commit is contained in:
Gergo Debreczeni 2014-02-04 01:14:15 +02:00
parent 2efd3faa3e
commit 4d2bd3fc27
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class SnapshotOps(object):
LOG.debug(_("Updating Glance image %(name)s with content from "
"merged disk %(image_vhd_path)s"),
{'image_id': name, 'image_vhd_path': image_vhd_path})
{'name': name, 'image_vhd_path': image_vhd_path})
update_task_state(task_state=task_states.IMAGE_UPLOADING,
expected_state=task_states.IMAGE_PENDING_UPLOAD)
self._save_glance_image(context, name, image_vhd_path)