From 5e9b763937a98f4915b01e1eb2eb5fd618281881 Mon Sep 17 00:00:00 2001 From: Fabio Alessandro Locati Date: Sun, 11 Dec 2016 23:14:00 +0100 Subject: [PATCH] Remove useless quotes - notification/sns.py (#19169) --- lib/ansible/modules/notification/sns.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/ansible/modules/notification/sns.py b/lib/ansible/modules/notification/sns.py index 8e5a07dad63..73ff6fa268f 100644 --- a/lib/ansible/modules/notification/sns.py +++ b/lib/ansible/modules/notification/sns.py @@ -87,19 +87,19 @@ requirements: EXAMPLES = """ - name: Send default notification message via SNS - local_action: - module: sns - msg: "{{ inventory_hostname }} has completed the play." - subject: "Deploy complete!" - topic: "deploy" + sns: + msg: '{{ inventory_hostname }} has completed the play.' + subject: Deploy complete! + topic: deploy + delegate_to: localhost - name: Send notification messages via SNS with short message for SMS - local_action: - module: sns - msg: "{{ inventory_hostname }} has completed the play." - sms: "deployed!" - subject: "Deploy complete!" - topic: "deploy" + sns: + msg: '{{ inventory_hostname }} has completed the play.' + sms: deployed! + subject: Deploy complete! + topic: deploy + delegate_to: localhost """ try: