From 21e892207a606314ae762bd37041342e10fa7f30 Mon Sep 17 00:00:00 2001 From: Sean McGinnis Date: Tue, 18 Aug 2015 08:08:18 -0500 Subject: [PATCH] Dell SC: Fix error causing missed log message Extremely trivial fix. An extra comma at the end of a logging line actually made it into a statement that doesn't perform logging. This patch removes the extra comma so that the message gets logged as expected. Change-Id: I032d5cdd54e3ed8924115744671d8ef9231e62c0 --- cinder/volume/drivers/dell/dell_storagecenter_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/volume/drivers/dell/dell_storagecenter_api.py b/cinder/volume/drivers/dell/dell_storagecenter_api.py index dab55ec23..7fdf5b841 100644 --- a/cinder/volume/drivers/dell/dell_storagecenter_api.py +++ b/cinder/volume/drivers/dell/dell_storagecenter_api.py @@ -1951,7 +1951,7 @@ class StorageCenterApi(object): if (self._update_volume_profiles(self.find_volume(vol['id']), addid=None, removeid=profileid)): - LOG.info(_LI('Removed %s from cg.'), vol['id']), + LOG.info(_LI('Removed %s from cg.'), vol['id']) else: LOG.error(_LE('Failed to remove %s from cg.'), vol['id']) return False -- 2.45.2