[Python] Use Py3k compatible print operator: print "foo" → print("foo")

This commit is contained in:
practicalswift
2016-03-08 23:10:52 +01:00
parent 56cbc4f740
commit 0fd0c48648
7 changed files with 62 additions and 62 deletions

View File

@@ -82,7 +82,7 @@ if __name__ == '__main__':
for template_file in template_map:
template_path = os.path.join(script_dir, template_file)
template = template_env.get_template(template_path)
print template_map[template_file]
print(template_map[template_file])
open(template_map[template_file], 'w').write(
template.render(tests=tests,
multisource_benches=multisource_benches,