From fc8de2b8acca52596a0a1f6b7f178be6989ec91f Mon Sep 17 00:00:00 2001 From: sgoudham Date: Wed, 15 Jul 2020 23:39:53 +0100 Subject: [PATCH] Role_string looks different --- cogs/help/info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/help/info.py b/cogs/help/info.py index bd8c1f23..90b23536 100644 --- a/cogs/help/info.py +++ b/cogs/help/info.py @@ -119,11 +119,11 @@ class GetInfo(commands.Cog): # Store the first 20 roles in a string called "roles" # (Skipping the first element as it's always going to be @everyone) - role_string = f"{' **>>** '.join(map(str, (role.mention for role in ctx.guild.roles[1:20])))} and **{length}** more" + role_string = f"{' **>** '.join(map(str, (role.mention for role in ctx.guild.roles[1:20])))} and **{length}** more" else: # Display all the roles in the server as it is less than 20 - role_string = f"{' **>>** '.join(map(str, (role.mention for role in ctx.guild.roles[1:])))}" + role_string = f"{' **>** '.join(map(str, (role.mention for role in ctx.guild.roles[1:])))}" # Check if the list of emojis returned are greater than 20 if len(ctx.guild.emojis) > 20: