From e92895f44ffad9ccb49c0759fc1c86fe4fbe3026 Mon Sep 17 00:00:00 2001 From: "Dusty.P" Date: Sat, 5 May 2018 21:31:03 -0800 Subject: [PATCH] Fixed layouts --- exts/utils.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exts/utils.py b/exts/utils.py index 6349006..ab369b8 100644 --- a/exts/utils.py +++ b/exts/utils.py @@ -19,8 +19,8 @@ class Utils: msg = await ctx.send(embed=em) time1 = ctx.message.created_at time = (msg.created_at - time1).total_seconds() * 1000 - em.description = f'''Response Time: **{math.ceil(time)}ms** - Discord Latency: **{math.ceil(self.bot.latency*1000)}ms**''' + em.description = f'Response Time: **{math.ceil(time)}ms**\n' \ + f'Discord Latency: **{math.ceil(self.bot.latency*1000)}ms**' await msg.edit(embed=em) @commands.command(aliases=['oauth', 'link']) @@ -31,7 +31,7 @@ class Utils: """ guy = guy or self.bot.user url = discord.utils.oauth_url(guy.id) - await ctx.send(f'**{url}**') + await ctx.send(f'**<{url}>**') @commands.command() @commands.is_owner()