Skip to content
Permalink
Browse files
  • Loading branch information
hortonr6 committed Nov 22, 2017
2 parents 7785e04 + 897af8d commit 2a00d03afa9ac4a3b2d5d2f2a603b018fd8e1f1d
Showing 1 changed file with 1 addition and 1 deletion.
@@ -196,7 +196,7 @@ def executeCan(sentence):
response = "Today is " + calendar.day_name[my_date.weekday()] response = "Today is " + calendar.day_name[my_date.weekday()]
elif "what month" in sentence: elif "what month" in sentence:
response = "It is " + datetime.now().strftime("%B") response = "It is " + datetime.now().strftime("%B")
elif "what year it it" in sentence: elif "what year is it" in sentence:
response = "It is " + datetime.now().year response = "It is " + datetime.now().year
elif "something about you" in sentence: elif "something about you" in sentence:
response = "I'm an inteligent chatbot. " response = "I'm an inteligent chatbot. "

0 comments on commit 2a00d03

Please sign in to comment.