1
0
Fork 0
mirror of synced 2024-06-03 11:14:33 +12:00

Correct syntax error

This commit is contained in:
Phxntxm 2017-04-16 17:58:05 -05:00
parent bfd3f75836
commit 5ac2d6f8ce

View file

@ -511,7 +511,7 @@ class Mod:
@commands.command() @commands.command()
@commands.guild_only() @commands.guild_only()
@utils.custom_perms(manage_messages=True) @utils.custom_perms(manage_messages=True)
async def prune(self, ctx, *specifications=None): async def prune(self, ctx, *specifications):
"""This command can be used to prune messages from certain members """This command can be used to prune messages from certain members
Mention any user you want to prune messages from; if no members are mentioned, the messages removed will be mine Mention any user you want to prune messages from; if no members are mentioned, the messages removed will be mine
If no limit is provided, then 100 will be used. This is also the max limit we can use If no limit is provided, then 100 will be used. This is also the max limit we can use