ShaoHe Feng has uploaded a new change for review. Change subject: fix TypeError of _eqSplit in vdsClient.py ......................................................................
fix TypeError of _eqSplit in vdsClient.py list type can not be a hash key Change-Id: I98b5573499adaa1b64f8343b445cc16df8f60f3d Signed-off-by: ShaoHe Feng <[email protected]> --- M vdsm_cli/vdsClient.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/00/7200/1 diff --git a/vdsm_cli/vdsClient.py b/vdsm_cli/vdsClient.py index 7e02c1d..8a95dc6 100644 --- a/vdsm_cli/vdsClient.py +++ b/vdsm_cli/vdsClient.py @@ -1408,7 +1408,7 @@ if len(kv) == 2: k, v = kv else: - k, v = kv, '' + k, v = kv[0], '' d[k] = v return d -- To view, visit http://gerrit.ovirt.org/7200 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I98b5573499adaa1b64f8343b445cc16df8f60f3d Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: ShaoHe Feng <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
