Remove unused quotes - notification/twilio.py (#19152)

This commit is contained in:
Fabio Alessandro Locati 2016-12-10 15:27:56 +01:00 committed by John R Barker
parent e788f13956
commit 617e82fe8c

View file

@ -70,25 +70,25 @@ EXAMPLES = '''
# note: replace account_sid and auth_token values with your credentials # note: replace account_sid and auth_token values with your credentials
# and you have to have the 'from_number' on your Twilio account # and you have to have the 'from_number' on your Twilio account
- twilio: - twilio:
msg: "All servers with webserver role are now configured." msg: All servers with webserver role are now configured.
account_sid: "ACXXXXXXXXXXXXXXXXX" account_sid: ACXXXXXXXXXXXXXXXXX
auth_token: "ACXXXXXXXXXXXXXXXXX" auth_token: ACXXXXXXXXXXXXXXXXX
from_number: "+15552014545" from_number: +15552014545
to_number: "+15553035681" to_number: +15553035681
delegate_to: localhost delegate_to: localhost
# send an SMS to multiple phone numbers about the deployment # send an SMS to multiple phone numbers about the deployment
# note: replace account_sid and auth_token values with your credentials # note: replace account_sid and auth_token values with your credentials
# and you have to have the 'from_number' on your Twilio account # and you have to have the 'from_number' on your Twilio account
- twilio: - twilio:
msg: "This server's configuration is now complete." msg: This server configuration is now complete.
account_sid: "ACXXXXXXXXXXXXXXXXX" account_sid: ACXXXXXXXXXXXXXXXXX
auth_token: "ACXXXXXXXXXXXXXXXXX" auth_token: ACXXXXXXXXXXXXXXXXX
from_number: "+15553258899" from_number: +15553258899
to_number: to_number:
- "+15551113232" - +15551113232
- "+12025551235" - +12025551235
- "+19735559010" - +19735559010
delegate_to: localhost delegate_to: localhost
# send an MMS to a single recipient with an update on the deployment # send an MMS to a single recipient with an update on the deployment
@ -96,12 +96,12 @@ EXAMPLES = '''
# note: replace account_sid and auth_token values with your credentials # note: replace account_sid and auth_token values with your credentials
# and you have to have the 'from_number' on your Twilio account # and you have to have the 'from_number' on your Twilio account
- twilio: - twilio:
msg: "Deployment complete!" msg: Deployment complete!
account_sid: "ACXXXXXXXXXXXXXXXXX" account_sid: ACXXXXXXXXXXXXXXXXX
auth_token: "ACXXXXXXXXXXXXXXXXX" auth_token: ACXXXXXXXXXXXXXXXXX
from_number: "+15552014545" from_number: +15552014545
to_number: "+15553035681" to_number: +15553035681
media_url: "https://demo.twilio.com/logo.png" media_url: https://demo.twilio.com/logo.png
delegate_to: localhost delegate_to: localhost
''' '''