Added error, warning and info formats to chat_formatting (#353)

This commit is contained in:
Thomas Mercurio 2016-08-29 20:55:03 -07:00 committed by Twentysix
parent 7904c51181
commit b4aacd28e7

View File

@ -1,3 +1,15 @@
def error(text):
return ":no_entry_sign: {}".format(text)
def warning(text):
return ":warning: {}".format(text)
def info(text):
return ":information_source: {}".format(text)
def bold(text):
return "**{}**".format(text)