8000 Merge pull request #13 from aes-/master · twilio/twilio-python@5420e9c · GitHub
[go: up one dir, main page]

Skip to content

Commit 5420e9c

Browse files
committed
Merge pull request #13 from aes-/master
Fix for the usage documentation on initiating an outbound call
2 parents ce94211 + c1186a0 commit 5420e9c

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