From 14bb55e67e92593ce3498f1cbd016847c2344ad0 Mon Sep 17 00:00:00 2001 From: rhorer Date: Fri, 10 Apr 2015 15:27:34 -0500 Subject: [PATCH] Update twilio.py module name in Examples --- notification/twilio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notification/twilio.py b/notification/twilio.py index 8969c28aa50..e50879cd62d 100644 --- a/notification/twilio.py +++ b/notification/twilio.py @@ -57,14 +57,14 @@ author: Matt Makai EXAMPLES = ''' # send a text message from the local server about the build status to (555) 303 5681 # note: you have to have purchased the 'from_number' on your Twilio account -- local_action: text msg="All servers with webserver role are now configured." +- local_action: twilio msg="All servers with webserver role are now configured." account_sid={{ twilio_account_sid }} auth_token={{ twilio_auth_token }} from_number=+15552014545 to_number=+15553035681 # send a text message from a server to (555) 111 3232 # note: you have to have purchased the 'from_number' on your Twilio account -- text: msg="This server's configuration is now complete." +- twilio: msg="This server's configuration is now complete." account_sid={{ twilio_account_sid }} auth_token={{ twilio_auth_token }} from_number=+15553258899 to_number=+15551113232