diff options
author | 2021-10-27 08:01:02 -0400 | |
---|---|---|
committer | 2021-10-27 08:01:02 -0400 | |
commit | 0fd2b8f960bcef646a16661f63e0fc21742fb8ab (patch) | |
tree | ee396f283b062d0aca82b7fd07a3a638647311c9 | |
parent | fix: testing fixes (diff) |
chore: embed format tweaking
-rw-r--r-- | bot/exts/utilities/color.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/utilities/color.py b/bot/exts/utilities/color.py index 495a1fd4..a5b374d6 100644 --- a/bot/exts/utilities/color.py +++ b/bot/exts/utilities/color.py @@ -110,9 +110,9 @@ class Colour(commands.Cog): name = self._rgb_to_name(rgb) colour_mode = ctx.invoked_with if name is None: - desc = f"{colour_mode.title()} information for the input colour." + desc = f"{colour_mode.upper()} information for the input colour." else: - desc = f"{colour_mode.title()} information for {name}." + desc = f"{colour_mode.upper()} information for `{name}`." colour_embed = Embed( title="Colour", description=desc, |