From 3501a34ebc98e92f666b38b24740c677fa8d471a Mon Sep 17 00:00:00 2001 From: Cao Xuan Hoang Date: Fri, 18 Nov 2016 13:16:42 +0700 Subject: [PATCH] Remove white space between print () There is a white space in line [print (*, then we remove it. Change-Id: I4d490902fcc38c0b7d05cd4ddd2359cd5ab9a09e --- utils/jenkins/parser.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/jenkins/parser.py b/utils/jenkins/parser.py index 60a5018..2871075 100644 --- a/utils/jenkins/parser.py +++ b/utils/jenkins/parser.py @@ -14,14 +14,14 @@ def main(argv): try: opts, args = getopt.getopt(argv, "hi:", "ifile=") if not opts: - print ('No options supplied. For help use -h') + print('No options supplied. For help use -h') sys.exit(2) except getopt.GetoptError: - print ('parser.py -i ') + print('parser.py -i ') sys.exit(2) for opt, arg in opts: if opt == '-h': - print ('parser.py -i ') + print('parser.py -i ') sys.exit() elif opt in ("-i", "--ifile"): inputfile = arg @@ -56,7 +56,7 @@ def create_config(dict): if __name__ == "__main__": inputfile = main(sys.argv[1:]) if not os.access(inputfile, os.R_OK): - print ("Cannot read the file: {0}. It may or not may exist".format( + print("Cannot read the file: {0}. It may or not may exist".format( inputfile)) sys.exit(2) dict = read_values(inputfile)