Skip to content

Commit 48f2da4

Browse files
committed
Update smack_my_bitch_up.go
Line 34, added %s to string output
1 parent 30ca9dc commit 48f2da4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go/smack_my_bitch_up.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func main(){
3131

3232
response,err := exec.Command("curl","-fSs","-u",TWILIO_ACCOUNT_SID + ":" + TWILIO_AUTH_TOKEN, "-d", "From=" + MY_NUMBER, "-d", "To=" + HER_NUMBER, "-d" , "Body=" + message, "https://api.twilio.com/2010-04-01/Accounts/" + TWILIO_ACCOUNT_SID + "/Messages").Output()
3333
if(err != nil){
34-
fmt.Printf("Failed to send SMS: ",err)
34+
fmt.Printf("Failed to send SMS: %s",err)
3535
return
3636
}
3737

0 commit comments

Comments
 (0)