From 7ff44639638ef0c001c12a122f0d1231053b2211 Mon Sep 17 00:00:00 2001 From: yuki Date: Wed, 8 Oct 2025 06:38:03 -0300 Subject: [PATCH] fix error message --- commands/collage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/collage.py b/commands/collage.py index 0969bd7..a911d95 100644 --- a/commands/collage.py +++ b/commands/collage.py @@ -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: