Fix Typo in repos release script 31/59231/1
authorTrevor Bramwell <tbramwell@linuxfoundation.org>
Thu, 28 Jun 2018 20:17:05 +0000 (13:17 -0700)
committerTrevor Bramwell <tbramwell@linuxfoundation.org>
Thu, 28 Jun 2018 20:20:01 +0000 (13:20 -0700)
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>
releases/scripts/repos.py

index 58454c3..139347a 100644 (file)
@@ -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__":