Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
keanemind committed Nov 5, 2017
1 parent 563db51 commit 21e6072
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sms.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def message_received():
connection = sql.connect()

if sql.process(str(number), connection):
"""
print("lol")
if 'credentials' not in flask.session:
# return flask.redirect('authorize')
Expand Down Expand Up @@ -93,7 +94,11 @@ def message_received():
resp = MessagingResponse()
resp.message(str(phone_number))
return str(resp)

"""
resp = MessagingResponse()
message = ("4693861646")
resp.message(message)
return str(resp)
else: # New user
resp = MessagingResponse()
message = ("Welcome to Lost in Phone!"
Expand Down

0 comments on commit 21e6072

Please sign in to comment.