Make sure that escape sequence in YAML is not interpreted by Python. (#507)
parent
d0d99c31b0
commit
98bfdb322a
|
@ -9,7 +9,7 @@ from __future__ import absolute_import, division, print_function
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
module: crypto_info
|
module: crypto_info
|
||||||
author: "Felix Fontein (@felixfontein)"
|
author: "Felix Fontein (@felixfontein)"
|
||||||
|
@ -24,7 +24,7 @@ notes:
|
||||||
options: {}
|
options: {}
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = r'''
|
||||||
- name: Retrieve information
|
- name: Retrieve information
|
||||||
community.crypto.crypto_info:
|
community.crypto.crypto_info:
|
||||||
account_key_src: /etc/pki/cert/private/account.key
|
account_key_src: /etc/pki/cert/private/account.key
|
||||||
|
@ -35,7 +35,7 @@ EXAMPLES = '''
|
||||||
var: crypto_information
|
var: crypto_information
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = r'''
|
||||||
python_cryptography_installed:
|
python_cryptography_installed:
|
||||||
description: Whether the L(Python cryptography library, https://cryptography.io/) is installed.
|
description: Whether the L(Python cryptography library, https://cryptography.io/) is installed.
|
||||||
returned: always
|
returned: always
|
||||||
|
|
Loading…
Reference in New Issue