From 03b9cf662a86c97f3673530a4c0ed371d061a188 Mon Sep 17 00:00:00 2001 From: Avishay Traeger Date: Tue, 11 Jun 2013 09:10:37 +0300 Subject: [PATCH] Fix LVM logging error. Missed a %s, which caused an exception. Change-Id: Ib6fcabebdcf70430f3e46095da6c5e13b3e3a4ff Fixes: bug 1189455 --- cinder/volume/drivers/lvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/volume/drivers/lvm.py b/cinder/volume/drivers/lvm.py index f9fc56902..a9390b98e 100644 --- a/cinder/volume/drivers/lvm.py +++ b/cinder/volume/drivers/lvm.py @@ -581,7 +581,7 @@ class LVMISCSIDriver(LVMVolumeDriver, driver.ISCSIDriver): self.configuration.volume_group, run_as_root=True) except exception.ProcessExecutionError as exc: - LOG.error(_("Error retrieving volume status: "), exc.stderr) + LOG.error(_("Error retrieving volume status: %s"), exc.stderr) out = False if out: -- 2.45.2