Remove white space between print and ()

TrivialFix

Change-Id: I3bc6b2f7c7968488ee3b8e69f2ba0d6828d79ebe
This commit is contained in:
zhangyanxian 2016-07-20 09:03:25 +00:00
parent 2100cbff60
commit 95a62e7ed0
1 changed files with 2 additions and 2 deletions

View File

@ -90,11 +90,11 @@ def repo_exists(repo):
def print_tag_missing(name, tag):
print ("* %s should have the tag '%s'" % (name, tag))
print("* %s should have the tag '%s'" % (name, tag))
def print_bad_tag(name, tag):
print ("* %s should not have the tag '%s'" % (name, tag))
print("* %s should not have the tag '%s'" % (name, tag))
if __name__ == '__main__':
sys.exit(main())