8000 Merge remote-tracking branch 'upstream/master' · Stackdriver/twilio-python@2410adf · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 1, 2018. It is now read-only.

Commit 2410adf

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 0a0592f + ff55942 commit 2410adf

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/usage/accounts.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Use the :meth:`Account.update` to modify one of your accounts. Right now the onl
2323
AUTH_TOKEN = "YYYYYYYYYYYYYYYYYY"
2424
2525
client = TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN)
26-
account = client.accounts.get()
27-
account.update(name="My Awesome Account")
26+
account = client.accounts.get(ACCOUNT_SID)
27+
account.update(friendly_name="My Awesome Account")
2828
2929
Creating Subaccounts
3030
----------------------

twilio/twiml.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ def xml(self):
8181
return el
8282

8383
def append(self, verb):
84-
print self.nestables
8584
if not self.nestables or verb.name not in self.nestables:
8685
raise TwimlException("%s is not nestable inside %s" % \
8786
(verb.name, self.name))

0 commit comments

Comments
 (0)
0