From 111aa9eaa346ee0c67f5d94251b2c7f00ff6997a Mon Sep 17 00:00:00 2001 From: Etzelia Date: Sat, 8 Dec 2018 23:38:30 -0600 Subject: [PATCH] Formatting consistency --- api/bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/bot.py b/api/bot.py index e3c5794..b897e89 100644 --- a/api/bot.py +++ b/api/bot.py @@ -123,10 +123,10 @@ class Discord(discord.Client): count = Player.objects.filter(username__icontains=search, application__isnull=False).count() if count > 0: if count == 1: - yield from self.discord_message(message.channel, "No applications matched, however there is a player match.") + yield from self.discord_message(message.channel, "**No applications matched, however there is a player match**") info = self.build_info(players[0].application) else: - info = "No applications matched, however there are player matches." + info = "**No applications matched, however there are player matches**" for player in players: app = player.application info += "\n{0} - {1} AKA {2} ({3})".format(app.id, app.username.replace("_", "\\_"), player.username.replace("_", "\\_"), app.status)