From b418d91d319f3c06243ec86f6d7978fc076dd1fd Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sat, 13 Aug 2016 17:48:13 -0500 Subject: [PATCH] Corrected what should be added to the 'author' list --- cogs/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/core.py b/cogs/core.py index a764a37..64f3b50 100644 --- a/cogs/core.py +++ b/cogs/core.py @@ -63,7 +63,7 @@ class Core: fmt['Official Bot Server'] = "https://discord.gg/f6uzJEj" authors = [] for author_id in config.owner_ids: - authors.append(discord.utils.get(all_members, id=author_id)) + authors.append(discord.utils.get(all_members, id=author_id).name) fmt['Author'] = ", ".join(authors)