Remove redundant escape characters

This commit is contained in:
Dan 2018-01-20 14:45:13 +01:00
parent ea35fa2480
commit 8c88a69d81

View File

@ -72,7 +72,7 @@ class Client:
created sessions are loaded.
"""
INVITE_LINK_RE = re.compile(r"^(?:https?:\/\/)?t\.me\/joinchat\/(.+)$")
INVITE_LINK_RE = re.compile(r"^(?:https?://)?t\.me/joinchat/(.+)$")
DIALOGS_AT_ONCE = 100
def __init__(self, session_name: str, test_mode: bool = False):