aboutsummaryrefslogtreecommitdiff
path: root/cogs/general.py
diff options
context:
space:
mode:
Diffstat (limited to 'cogs/general.py')
-rwxr-xr-xcogs/general.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/cogs/general.py b/cogs/general.py
index cf05eb4..aa61d9c 100755
--- a/cogs/general.py
+++ b/cogs/general.py
@@ -400,9 +400,7 @@ class General(commands.Cog):
prefixes.pop(1)
prefixes.pop(1)
prefixes.pop(1)
- output = ""
- for i in prefixes:
- output += i+", "
+ output = ", ".join(prefixes)
await ctx.send(f"My prefixes are {output}")