From 87b46bb925a85df441c8f4dcadad10df7807877a Mon Sep 17 00:00:00 2001 From: Paul M Furley Date: Mon, 17 Nov 2014 10:49:21 +0000 Subject: [PATCH] Use print() not print statement `print(x)` has been preferred over `print x` for a long time now, and is required for Python 3 compatibility. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 12ce70771f..c33171f026 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ client = TwilioRestClient(account, token) call = client.calls.create(to="9991231234", from_="9991231234", url="http://twimlets.com/holdmusic?Bucket=com.twilio.music.ambient") -print call.sid +print(call.sid) ``` ### Send an SMS @@ -99,7 +99,7 @@ from twilio import twiml r = twiml.Response() r.say("Welcome to twilio!") -print str(r) +print(str(r)) ``` ```xml