diff options
| -rw-r--r-- | bot/cogs/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/utils.py b/bot/cogs/utils.py index d605cd201..94f3938e4 100644 --- a/bot/cogs/utils.py +++ b/bot/cogs/utils.py @@ -94,7 +94,7 @@ class Utils: Shows you information on up to 25 unicode characters. """ - match = re.match(r"<(a?):([a-zA-Z0-9\_]+):([0-9]+)>", characters) + match = re.match(r"<(a?):(\w+):(\d+)>", characters) if match: embed = Embed( title="Non-Character Detected", |