contrib bots: Better error handling response in thesaurus.

This commit is contained in:
Abhijeet Kaur 2017-03-06 00:51:56 +05:30 committed by showell
parent 050162592a
commit 1b31a16d13

View file

@ -34,10 +34,12 @@ def get_thesaurus_result(original_content):
return help_message return help_message
elif original_content.startswith('synonym'): elif original_content.startswith('synonym'):
result = get_clean_response(search_keyword, method = Dictionary.synonym) result = get_clean_response(search_keyword, method = Dictionary.synonym)
return result
elif original_content.startswith('antonym'): elif original_content.startswith('antonym'):
result = get_clean_response(search_keyword, method = Dictionary.antonym) result = get_clean_response(search_keyword, method = Dictionary.antonym)
return result
if result is None:
result = "Sorry, no result found! Please check the word."
return result
class ThesaurusHandler(object): class ThesaurusHandler(object):
''' '''