From 213ee55d77f5af275602752c49f666c60382a835 Mon Sep 17 00:00:00 2001 From: Alexander Vega Date: Sat, 28 Nov 2015 20:58:18 -0500 Subject: [PATCH] Error on line 33 Error resulting in missing underscore after "from" on line 33 --- python/smack_my_bitch_up.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/smack_my_bitch_up.py b/python/smack_my_bitch_up.py index 5a5d425..02c7e05 100755 --- a/python/smack_my_bitch_up.py +++ b/python/smack_my_bitch_up.py @@ -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) )