8000 Fix for the documentation on initiating a new call. · twilio/twilio-python@c1186a0 · GitHub
[go: up one dir, main page]

Skip to content

Commit c1186a0

Browse files
author
aes
committed
Fix for the documentation on initiating a new call.
1 parent ce94211 commit c1186a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/usage/phone-calls.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ The :class:`Calls` resource allows you to make outgoing calls. Before a call can
1616
from twilio.rest import TwilioRestClient
1717
1818
client = TwilioRestClient()
19-
call = client.calls.make(to="9991231234, from_="9991231234")
20-
url="http://foo.com/call.xml")
19+
call = client.calls.create(to="9991231234, from_="9991231234",
20+
url="http://foo.com/call.xml")
2121
print call.length
2222
print call.sid
2323

0 commit comments

Comments
 (0)
0