1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Fix Deprecation warning due to invalid escape sequences

This commit is contained in:
Badiboy
2020-05-01 11:25:51 +03:00
parent 57fb8d2fad
commit ef81868ebc
2 changed files with 3 additions and 3 deletions

View File

@ -244,7 +244,7 @@ def extract_arguments(text):
:param text: String to extract the arguments from a command
:return: the arguments if `text` is a command (according to is_command), else None.
"""
regexp = re.compile("/\w*(@\w*)*\s*([\s\S]*)",re.IGNORECASE)
regexp = re.compile(r"/\w*(@\w*)*\s*([\s\S]*)",re.IGNORECASE)
result = regexp.match(text)
return result.group(2) if is_command(text) else None