From 372a8aaae464f4e1e0c73625bdd1b0510b0477c9 Mon Sep 17 00:00:00 2001 From: Twentysix Date: Tue, 30 Aug 2016 17:45:05 +0200 Subject: [PATCH] [Utils] Fixed chat_formatting functions for mobile compatibility --- cogs/utils/chat_formatting.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cogs/utils/chat_formatting.py b/cogs/utils/chat_formatting.py index 5344ca6f6..a84a68717 100644 --- a/cogs/utils/chat_formatting.py +++ b/cogs/utils/chat_formatting.py @@ -1,13 +1,13 @@ def error(text): - return ":no_entry_sign: {}".format(text) + return "\N{NO ENTRY SIGN} {}".format(text) def warning(text): - return ":warning: {}".format(text) + return "\N{WARNING SIGN} {}".format(text) def info(text): - return ":information_source: {}".format(text) + return "\N{INFORMATION SOURCE} {}".format(text) def bold(text):