fix error message

This commit is contained in:
yuki 2025-10-08 06:38:03 -03:00
parent 1daa666ee1
commit 7ff4463963

View file

@ -15,7 +15,7 @@ def setup(bot: bot.Bot):
temp_msg = None
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
if int(size.split('x')[0]) > 5 or int(size.split('x')[1]) > 5: