From e788f139569a007b8e57587f20daec416e69a17a Mon Sep 17 00:00:00 2001 From: Fabio Alessandro Locati Date: Sat, 10 Dec 2016 15:27:35 +0100 Subject: [PATCH] Remove unused quotes - files/unarchive.py (#19155) --- lib/ansible/modules/files/unarchive.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/modules/files/unarchive.py b/lib/ansible/modules/files/unarchive.py index c919d1f0ae8..558b0215bab 100644 --- a/lib/ansible/modules/files/unarchive.py +++ b/lib/ansible/modules/files/unarchive.py @@ -126,13 +126,13 @@ EXAMPLES = ''' - unarchive: src: /tmp/foo.zip dest: /usr/local/bin - remote_src: yes + remote_src: True # Unarchive a file that needs to be downloaded (added in 2.0) - unarchive: - src: "https://example.com/example.zip" + src: https://example.com/example.zip dest: /usr/local/bin - remote_src: yes + remote_src: True ''' import re