diff --git a/doc/templates/gen.py b/doc/templates/gen.py index bb9c4130..afc390d1 100755 --- a/doc/templates/gen.py +++ b/doc/templates/gen.py @@ -7,9 +7,9 @@ date_format = "%d-%b-%Y" # ---------------------------------------------------------------------- # functions def usage(): - print """Usage: gen.py file.in [...] + print("""Usage: gen.py file.in [...] Substitute placeholders in input files with content - """ + """) def gen_html(file): """Replace variables in the file with their content""" @@ -49,9 +49,9 @@ for i in range(len(vars)-1, -1, -1): vars.sort() # Substitute variables in all input files -print "Substituting variables", vars +print("Substituting variables {0}".format(vars)) for file in input: - print "Processing", file, "..." + print("Processing {0}...".format(file)) text = gen_html(file) file = file.replace(".in", "") open(file, 'w').write(text) diff --git a/website/bin/gen.py b/website/bin/gen.py index 49378589..5092fdce 100755 --- a/website/bin/gen.py +++ b/website/bin/gen.py @@ -7,9 +7,9 @@ date_format = "%d-%b-%Y" # ---------------------------------------------------------------------- # functions def usage(): - print """Usage: gen.py file.in [...] + print("""Usage: gen.py file.in [...] Substitute placeholders in input files with content - """ + """) def gen_html(file): """Replace variables in the file with their content""" @@ -49,9 +49,9 @@ for i in range(len(vars)-1, -1, -1): vars.sort() # Substitute variables in all input files -print "Substituting variables", vars +print("Substituting variables {0}".format(vars)) for file in input: - print "Processing", file, "..." + print("Processing {0}...".format(file)) text = gen_html(file) file = file.replace(".in", "") open(file, 'w').write(text)