mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[Python] Use Py3k compatible print operator: print "foo" → print("foo")
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user