summaryrefslogtreecommitdiffstats
path: root/releases
diff options
context:
space:
mode:
authorTrevor Bramwell <tbramwell@linuxfoundation.org>2018-06-28 13:17:05 -0700
committerTrevor Bramwell <tbramwell@linuxfoundation.org>2018-06-28 13:20:01 -0700
commit067d29186db675852d300533c0bac7f477ffc840 (patch)
tree36bfaead92f8701d6d6e80da42c22d6a2eb3b9e8 /releases
parentdd8b2323fe6e8f5ae48765c77a3c8a8f54af57a9 (diff)
Fix Typo in repos release script
As the scripts are ran under Python 3, parenthesis are required around print statements. Adding these doesn't seem to cause in error in Python 2. Change-Id: Ic0ce623ded5f3e3f27c8117e2067566afc8d8c0b 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 58454c318..139347a67 100644
--- a/releases/scripts/repos.py
+++ b/releases/scripts/repos.py
@@ -87,7 +87,7 @@ def list_repos(project, args):
elif not args.release:
repos.add(Repo(repo, ref, item['version']))
for repo in repos:
- print repo
+ print(repo)
if __name__ == "__main__":