2
0
mirror of https://github.com/narkoz/hacker-scripts synced 2025-08-23 10:57:13 +00:00

Error on line 33

Error resulting in missing underscore after "from" on line 33
This commit is contained in:
Alexander Vega 2015-11-28 20:58:18 -05:00
parent 46dcd9e347
commit 213ee55d77

View File

@ -30,7 +30,7 @@ client = TwilioRestClient(TWILIO_ACCOUNT_SID, TWILIO_AUTH_TOKEN)
client.messages.create(
to=her_number,
from=my_number,
from_=my_number,
body="Late at work. " + random.choice(reasons)
)