mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Handle utf-8 in module short desc
This commit is contained in:
parent
42e312d3bd
commit
5cd3f71792
1 changed files with 2 additions and 1 deletions
|
@ -38,6 +38,7 @@ from six import iteritems
|
||||||
|
|
||||||
from ansible.utils import module_docs
|
from ansible.utils import module_docs
|
||||||
from ansible.utils.vars import merge_hash
|
from ansible.utils.vars import merge_hash
|
||||||
|
from ansible.utils.unicode import to_bytes
|
||||||
from ansible.errors import AnsibleError
|
from ansible.errors import AnsibleError
|
||||||
|
|
||||||
#####################################################################################
|
#####################################################################################
|
||||||
|
@ -343,7 +344,7 @@ def print_modules(module, category_file, deprecated, core, options, env, templat
|
||||||
result = process_module(modname, options, env, template, outputname, module_map, aliases)
|
result = process_module(modname, options, env, template, outputname, module_map, aliases)
|
||||||
|
|
||||||
if result != "SKIPPED":
|
if result != "SKIPPED":
|
||||||
category_file.write(" %s - %s <%s_module>\n" % (modstring, rst_ify(result), module))
|
category_file.write(" %s - %s <%s_module>\n" % (to_bytes(modstring), to_bytes(rst_ify(result)), to_bytes(module)))
|
||||||
|
|
||||||
def process_category(category, categories, options, env, template, outputname):
|
def process_category(category, categories, options, env, template, outputname):
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue