Flip INFO REPO records around for parsing sanity.

This commit is contained in:
Asher Baker 2015-10-28 09:47:40 +00:00
parent 4be998c4dc
commit 4d3c89c065

View File

@ -73,7 +73,7 @@ while lines[index].split(None, 1)[0] == 'INFO':
index += 1;
for root, info in roots.items():
lines.insert(index, 'INFO REPO ' + ' '.join([root, info[0], info[1]]))
lines.insert(index, 'INFO REPO ' + ' '.join([info[1], info[0], root]))
index += 1;
out = os.linesep.join(lines)