mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 13:02:38 +00:00
Add catching of empty arguments
This commit is contained in:
parent
3f79a77601
commit
36075607e5
1 changed files with 12 additions and 0 deletions
|
@ -1495,6 +1495,9 @@ class MsG:
|
|||
return True
|
||||
return False
|
||||
|
||||
if not tags:
|
||||
raise exc.MissingArgument
|
||||
|
||||
aliases = {}
|
||||
|
||||
try:
|
||||
|
@ -1564,6 +1567,9 @@ class MsG:
|
|||
|
||||
except exc.Abort:
|
||||
await dest.send('**Aborted**')
|
||||
except exc.MissingArgument:
|
||||
await dest.send('\N{CROSS MARK} **Missing tags**')
|
||||
await ctx.message.add_reaction('\N{CROSS MARK}')
|
||||
|
||||
@_add_tags.command(name='channel', aliases=['ch', 'c'], brief='@manage_channel@ Add tag(s) to the current channel blacklist (requires manage_channel)', description='Add tag(s) to the current channel blacklist ')
|
||||
@cmds.has_permissions(manage_channels=True)
|
||||
|
@ -1585,6 +1591,9 @@ class MsG:
|
|||
|
||||
except exc.Abort:
|
||||
await dest.send('**Aborted**')
|
||||
except exc.MissingArgument:
|
||||
await dest.send('\N{CROSS MARK} **Missing tags**')
|
||||
await ctx.message.add_reaction('\N{CROSS MARK}')
|
||||
|
||||
@_add_tags.command(name='me', aliases=['m'])
|
||||
async def __add_user_tags(self, ctx, *args):
|
||||
|
@ -1602,6 +1611,9 @@ class MsG:
|
|||
|
||||
except exc.Abort:
|
||||
await dest.send('**Aborted**')
|
||||
except exc.MissingArgument:
|
||||
await dest.send('\N{CROSS MARK} **Missing tags**')
|
||||
await ctx.message.add_reaction('\N{CROSS MARK}')
|
||||
|
||||
@blacklist.group(name='remove', aliases=['rm', 'r'])
|
||||
async def _remove_tags(self, ctx):
|
||||
|
|
Loading…
Reference in a new issue