aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts
diff options
context:
space:
mode:
Diffstat (limited to 'bot/exts')
-rw-r--r--bot/exts/utilities/colour.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utilities/colour.py b/bot/exts/utilities/colour.py
index 3b5c8681..c865859a 100644
--- a/bot/exts/utilities/colour.py
+++ b/bot/exts/utilities/colour.py
@@ -153,7 +153,7 @@ class Colour(commands.Cog):
hex_tuple = ImageColor.getrgb(hex_code)
if len(hex_tuple) == 4:
- hex_tuple = hex_tuple[:-1] # color must be RGB. If RGBA, we remove the alpha value
+ hex_tuple = hex_tuple[:-1] # Colour must be RGB. If RGBA, we remove the alpha value
await self.send_colour_response(ctx, hex_tuple)
@colour.command()