From: YangLei Date: Wed, 15 Oct 2014 10:59:31 +0000 (+0800) Subject: Correct the message string X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=fbd04f71ed28efc85e51465527e91c21bd0d7328;p=openstack-build%2Fcinder-build.git Correct the message string Change %(volumeid) to %(volumeid)s in message string. Change-Id: Ia780a8687a784a6d8d8f0c5e6fe9b1a884416608 Closes-Bug: #1381464 --- diff --git a/cinder/volume/drivers/prophetstor/dpl_fc.py b/cinder/volume/drivers/prophetstor/dpl_fc.py index a266f7657..69a68f9dd 100644 --- a/cinder/volume/drivers/prophetstor/dpl_fc.py +++ b/cinder/volume/drivers/prophetstor/dpl_fc.py @@ -147,7 +147,7 @@ class DPLFCDriver(dplcommon.DPLCOMMONDriver, self._conver_uuid2hex(volumeid), targetwwpns, initiatorwwpns, volumename) except Exception: - msg = _('Volume %(volumeid) failed to send assign command, ' + msg = _('Volume %(volumeid)s failed to send assign command, ' 'ret: %(status)s output: %(output)s') % \ {'volumeid': volumeid, 'status': ret, 'output': output} LOG.error(msg)