update: Fix the manifest commit dictionnary format

The structure was changed in last commit but a code path was not properly updated
This commit is contained in:
Thibault Saunier 2018-11-05 09:42:29 -03:00
parent 859e613edb
commit 52c0086c5a

View file

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