From 45d80bf6b937aa3ea179d4b23b8f8162c403f143 Mon Sep 17 00:00:00 2001 From: phxntxm Date: Tue, 11 Jul 2017 14:38:12 -0500 Subject: [PATCH] Newline corrections --- cogs/misc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/misc.py b/cogs/misc.py index 2c50646..7781112 100644 --- a/cogs/misc.py +++ b/cogs/misc.py @@ -174,7 +174,7 @@ class Miscallaneous: # Set the description include dev server (should be required) and the optional patreon link description = "[Dev Server]({})".format(utils.dev_server) if utils.patreon_link: - description += "[Patreon]({})".format(utils.patreon_link) + description += "\n[Patreon]({})".format(utils.patreon_link) # Now creat the object opts = {'title': 'Bonfire', 'description': description, @@ -194,7 +194,7 @@ class Miscallaneous: value += 'Memory: {:.2f} MiB'.format(memory_usage) value += '\nCPU: {}%'.format(cpu_usage) if hasattr(self.bot, 'uptime'): - value += (pendulum.utcnow() - self.bot.uptime).in_words() + value += "\nUptime: {}".format((pendulum.utcnow() - self.bot.uptime).in_words()) embed.add_field(name=name, value=value, inline=False) # Setup the user and guild statistics