Change regex from \d+ to [0-9]+ for performance reasons.

\d+ includes unicode characters while [0-9]+ doesn't.
This commit is contained in:
Rapptz
2015-12-16 23:46:02 -05:00
parent 4f66d41ca3
commit ebcb532c38
2 changed files with 3 additions and 3 deletions

View File

@ -206,7 +206,7 @@ class Client:
if isinstance(mentions, list):
return [user.id for user in mentions]
elif mentions == True:
return re.findall(r'<@(\d+)>', content)
return re.findall(r'<@([0-9]+)>', content)
else:
return []