From 95a62e7ed07f5e429d5eaa3ac8bcf4bba425b4e7 Mon Sep 17 00:00:00 2001 From: zhangyanxian Date: Wed, 20 Jul 2016 09:03:25 +0000 Subject: [PATCH] Remove white space between print and () TrivialFix Change-Id: I3bc6b2f7c7968488ee3b8e69f2ba0d6828d79ebe --- tools/validate_tags.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/validate_tags.py b/tools/validate_tags.py index e552c4618..4806ff50a 100755 --- a/tools/validate_tags.py +++ b/tools/validate_tags.py @@ -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())