Make sure that escape sequence in YAML is not interpreted by Python. (#507)

pull/508/head
Felix Fontein 2022-09-04 22:09:06 +02:00 committed by GitHub
parent d0d99c31b0
commit 98bfdb322a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ from __future__ import absolute_import, division, print_function
__metaclass__ = type
DOCUMENTATION = '''
DOCUMENTATION = r'''
---
module: crypto_info
author: "Felix Fontein (@felixfontein)"
@ -24,7 +24,7 @@ notes:
options: {}
'''
EXAMPLES = '''
EXAMPLES = r'''
- name: Retrieve information
community.crypto.crypto_info:
account_key_src: /etc/pki/cert/private/account.key
@ -35,7 +35,7 @@ EXAMPLES = '''
var: crypto_information
'''
RETURN = '''
RETURN = r'''
python_cryptography_installed:
description: Whether the L(Python cryptography library, https://cryptography.io/) is installed.
returned: always