diff options
author | Michael Kerrin <michael.kerrin@hp.com> | 2013-05-21 14:28:32 +0000 |
---|---|---|
committer | Michael Kerrin <michael.kerrin@hp.com> | 2013-05-21 14:29:55 +0000 |
commit | ef874ea43f320e13d100b259edd6f95aa2701010 (patch) | |
tree | cfeb06d4c1fe2a3dcf0bf3a419c39e24ac9441d9 | |
parent | eebcd6f2058d78c87dd2ee0a9a90f21f33f44e97 (diff) | |
download | nova-ef874ea43f320e13d100b259edd6f95aa2701010.tar.gz nova-ef874ea43f320e13d100b259edd6f95aa2701010.tar.xz nova-ef874ea43f320e13d100b259edd6f95aa2701010.zip |
Fix missing argument to logging warning call
Change-Id: I04ff613e785b6b39476b7766b94c831d7e22148a
-rwxr-xr-x | nova/virt/disk/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/virt/disk/api.py b/nova/virt/disk/api.py index c20f2c71a..9fdec0e87 100755 --- a/nova/virt/disk/api.py +++ b/nova/virt/disk/api.py @@ -374,7 +374,7 @@ def inject_data_into_fs(fs, key, net, metadata, admin_password, files, if inject in mandatory: raise LOG.warn(_('Ignoring error injecting %(inject)s into image ' - '(%(e)s)'), {'e': e}) + '(%(e)s)'), {'e': e, 'inject': inject}) status = False return status |