From 4b2bf2408717609f91f972144648a366c0217035 Mon Sep 17 00:00:00 2001 From: Rob Kennedy Date: Thu, 24 May 2018 15:55:30 -0400 Subject: [PATCH] Add the nonce in the regex of init response --- hangups/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hangups/client.py b/hangups/client.py index e72050f9..c75e6e6b 100644 --- a/hangups/client.py +++ b/hangups/client.py @@ -27,7 +27,7 @@ 'pvt': None, # Populated later } CHAT_INIT_REGEX = re.compile( - r"(?:)", re.DOTALL + r"(?:)", re.DOTALL ) # Timeout to send for setactiveclient requests: ACTIVE_TIMEOUT_SECS = 120