File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ The output is perfectly formatted XML:
30
30
.. code-block :: xml
31
31
32
32
<?xml version =" 1.0" encoding =" utf-8" ?>
33
- <Response ><Say >Hello</Say ><Response >
33
+ <Response ><Say >Hello</Say ></ Response >
34
34
35
35
The verb methods (outlined in the :doc: `complete reference </api/twiml >`)
36
36
take the body (only text) of the verb as the first argument.
@@ -49,7 +49,7 @@ All attributes are keyword arguments.
49
49
<?xml version =" 1.0" encoding =" utf-8" ?>
50
50
<Response >
51
51
<Play loop =" 3" >https://api.twilio.com/cowbell.mp3</Play >
52
- <Response >
52
+ </ Response >
53
53
54
54
The Message and Sms verbs are slightly special: because :const: `from ` is a
55
55
Python keyword, use the :const: `sender ` parameter to specify the number
@@ -68,7 +68,7 @@ the message should come from:
68
68
<?xml version =" 1.0" encoding =" utf-8" ?>
69
69
<Response >
70
70
<Message from =" +14155551234" >Hello MMS Monkey!</Message >
71
- <Response >
71
+ </ Response >
72
72
73
73
Python 2.6+ added the :const: `with ` statement for context management.
74
74
Using :const: `with `, the module can *almost * emulate Ruby blocks.
You can’t perform that action at this time.
0 commit comments