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
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