diff options
Diffstat (limited to 'cogs/general.py')
-rwxr-xr-x | cogs/general.py | 4 |
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}")
|