mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Fix py3 docs build (#33345)
* Open file in binary mode to support py3 writes using bytes * Update sort filter to use an attribute, so that py3 can sort dictionaries
This commit is contained in:
@@ -62,7 +62,7 @@ def main(args):
|
||||
output_name = os.path.join(output_dir, template_file.replace('.j2', ''))
|
||||
temp_vars = {'config_options': config_options}
|
||||
|
||||
with open(output_name, 'w') as f:
|
||||
with open(output_name, 'wb') as f:
|
||||
f.write(template.render(temp_vars).encode('utf-8'))
|
||||
|
||||
return 0
|
||||
|
||||
Reference in New Issue
Block a user