From: Trevor Bramwell Date: Thu, 28 Jun 2018 20:17:05 +0000 (-0700) Subject: Fix Typo in repos release script X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=067d29186db675852d300533c0bac7f477ffc840;p=releng.git 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 --- 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__":