From 52c0086c5a92568291a92fe1bce6cdbffb25ac85 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Mon, 5 Nov 2018 09:42:29 -0300 Subject: [PATCH] update: Fix the manifest commit dictionnary format The structure was changed in last commit but a code path was not properly updated --- git-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-update b/git-update index a9259c5ad3..87e6f7c585 100755 --- a/git-update +++ b/git-update @@ -28,7 +28,7 @@ def manifest_get_commits(manifest): if remote: res[name] = ['FETCH_HEAD', [os.path.join(remotes[remote], name), child.attrib['revision']]] else: - res[name] = child.attrib["revision"] + res[name] = [child.attrib["revision"], []] return res