From 4d3c89c0652e3b89456773a1277844d5fda89936 Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Wed, 28 Oct 2015 09:47:40 +0000 Subject: [PATCH] Flip INFO REPO records around for parsing sanity. --- tools/buildbot/upload_symbols.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildbot/upload_symbols.py b/tools/buildbot/upload_symbols.py index 8c5bfb71..a9b255be 100644 --- a/tools/buildbot/upload_symbols.py +++ b/tools/buildbot/upload_symbols.py @@ -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)