summaryrefslogtreecommitdiffstats
path: root/releases
diff options
context:
space:
mode:
authorTrevor Bramwell <tbramwell@linuxfoundation.org>2018-06-28 16:05:41 -0700
committerTrevor Bramwell <tbramwell@linuxfoundation.org>2018-06-28 16:05:41 -0700
commit1590a4f64211574ad7a96bb81ad498e4a34fbbd0 (patch)
treebaddd448a63bde07ca70a6eb78e12d44c75cbba9 /releases
parent0f8bd836b9b6d1017a5564cc0e9a3beae4736436 (diff)
Fix the output of repo list to be 'repo, tag, ref'
This was changed in a previous commit and causes calls to 'git branch' during the verification job to fail. Change-Id: I71c248abecf030658371b810d403e1f460933946 Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'releases')
-rw-r--r--releases/scripts/repos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/releases/scripts/repos.py b/releases/scripts/repos.py
index 139347a67..47ce42d88 100644
--- a/releases/scripts/repos.py
+++ b/releases/scripts/repos.py
@@ -85,7 +85,7 @@ def list_repos(project, args):
elif args.release and item['version'] == args.release:
repos.add(Repo(repo, ref))
elif not args.release:
- repos.add(Repo(repo, ref, item['version']))
+ repos.add(Repo(repo, item['version'], ref))
for repo in repos:
print(repo)