From 7a932a93b0e81c7d023d740022be867e1bbb9c62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?pollenJP=28=40=27=CF=89=27=40=29?= Date: Tue, 6 May 2025 23:29:18 +0900 Subject: [PATCH] get_url: missing closing brace in docs (#85096) (cherry picked from commit 1c29910087a824b9632616e8c6264be83a7ff9ff) --- lib/ansible/modules/get_url.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/get_url.py b/lib/ansible/modules/get_url.py index f742c363349..c9e0ac8644b 100644 --- a/lib/ansible/modules/get_url.py +++ b/lib/ansible/modules/get_url.py @@ -87,7 +87,7 @@ options: - 'If a checksum is passed to this parameter, the digest of the destination file will be calculated after it is downloaded to ensure its integrity and verify that the transfer completed successfully. - Format: :, for example C(checksum="sha256:D98291AC[...]B6DC7B97", + Format: :, for example C(checksum="sha256:D98291AC[...]B6DC7B97"), C(checksum="sha256:http://example.com/path/sha256sum.txt").' - If you worry about portability, only the sha1 algorithm is available on all platforms and python versions.