From 98bfdb322adbc00a4479e18bd6befe50fb96fe12 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sun, 4 Sep 2022 22:09:06 +0200 Subject: [PATCH] Make sure that escape sequence in YAML is not interpreted by Python. (#507) --- plugins/modules/crypto_info.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/modules/crypto_info.py b/plugins/modules/crypto_info.py index 315cd746..8f0076ff 100644 --- a/plugins/modules/crypto_info.py +++ b/plugins/modules/crypto_info.py @@ -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