From Dan Kenigsberg <[email protected]>: Dan Kenigsberg has uploaded a new change for review.
Change subject: pylint: vdsClientGluster: get dictionary element properly ...................................................................... pylint: vdsClientGluster: get dictionary element properly Change-Id: I149824bca1de057c24a737a6bdc043e93a902aad Signed-off-by: Dan Kenigsberg <[email protected]> --- M client/vdsClientGluster.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/39/69339/1 diff --git a/client/vdsClientGluster.py b/client/vdsClientGluster.py index ff9b45a..b818f29 100644 --- a/client/vdsClientGluster.py +++ b/client/vdsClientGluster.py @@ -178,7 +178,7 @@ def do_glusterVolumeRemoveBrickStart(self, args): params = self._eqSplit(args) volumeName = params.get('volumeName', '') - brickList = params('bricks', '').split(',') + brickList = params.get('bricks', '').split(',') replicaCount = params.get('replica', '') status = self.s.glusterVolumeRemoveBrickStart(volumeName, -- To view, visit https://gerrit.ovirt.org/69339 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I149824bca1de057c24a737a6bdc043e93a902aad Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Dan Kenigsberg <[email protected]> _______________________________________________ vdsm-patches mailing list -- [email protected] To unsubscribe send an email to [email protected]
