removing unnessary else statement

This commit is contained in:
Luke Robles 2017-08-09 13:58:32 -07:00
parent d30f883ec2
commit 40443cb91b

View File

@ -54,5 +54,5 @@ def parse_message(message):
except KeyError: except KeyError:
return "I can't help you with that" return "I can't help you with that"
return "```{}```".format(explanation) return "```{}```".format(explanation)
else:
return get_help_message('show_all') return get_help_message('show_all')