diff options
author | 2022-07-14 10:16:45 -0400 | |
---|---|---|
committer | 2022-07-14 10:16:45 -0400 | |
commit | 617ed4e6495598ab307cdf0c7f31d492852be03e (patch) | |
tree | 1f58661f799a09649fa98794308c81b4bc6d847c | |
parent | Normalized REGEX_EMOJI naming (diff) |
Updated usage of REGEX_EMOJI
Updated usage for new naming
-rw-r--r-- | bot/exts/fun/uwu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/fun/uwu.py b/bot/exts/fun/uwu.py index 9c6c5020..3e98ed2e 100644 --- a/bot/exts/fun/uwu.py +++ b/bot/exts/fun/uwu.py @@ -128,7 +128,7 @@ class Uwu(Cog): def _ext_emoji_replace(self, input_string: str) -> str: """Replaces external emojis with emoticons.""" - groups = RE_EMOJI.findall(input_string) + groups = REGEX_EMOJI.findall(input_string) emojis = {Emoji.from_match(match) for match in groups} # Replace with random emoticon if unable to display emojis_map = { |