diff options
| author | 2020-10-07 18:13:30 +0530 | |
|---|---|---|
| committer | 2020-10-07 18:13:30 +0530 | |
| commit | 7068babf1dae498b75b3b1390c1d635135747a84 (patch) | |
| tree | 9666cb6566ec9f92ebfeb98d6d2b485c9e127ee6 /bot | |
| parent | Corrected doc string (diff) | |
Corrected msg
Co-authored-by: Rohan Reddy Alleti <[email protected]>
Diffstat (limited to 'bot')
| -rw-r--r-- | bot/exts/evergreen/emoji_count.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/emoji_count.py b/bot/exts/evergreen/emoji_count.py index b9838020..da7a03ba 100644 --- a/bot/exts/evergreen/emoji_count.py +++ b/bot/exts/evergreen/emoji_count.py @@ -29,7 +29,7 @@ class EmojiCount(commands.Cog): if len(emoji) == 1: for key, value in emoji.items(): - msg.append(f"There are **{len(value)}** emojis in the **{key}** category") + msg.append(f"There is **{len(value)}** emoji in the **{key}** category") embed.set_thumbnail(url=random.choice(value).url) else: |