fix error message
This commit is contained in:
parent
1daa666ee1
commit
7ff4463963
1 changed files with 1 additions and 1 deletions
|
|
@ -15,7 +15,7 @@ def setup(bot: bot.Bot):
|
||||||
temp_msg = None
|
temp_msg = None
|
||||||
|
|
||||||
if 'x' not in size:
|
if 'x' not in size:
|
||||||
await ctx.send(u.error_msg("Please provide a valid size.\nie `/chart album 5x5`"))
|
await ctx.send(u.error_msg("Please provide a valid size.\nie `/chartalbum 5x5`"))
|
||||||
return
|
return
|
||||||
|
|
||||||
if int(size.split('x')[0]) > 5 or int(size.split('x')[1]) > 5:
|
if int(size.split('x')[0]) > 5 or int(size.split('x')[1]) > 5:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue