diff options
Diffstat (limited to 'sleekxmpp/thirdparty/suelta/mechanisms')
-rw-r--r-- | sleekxmpp/thirdparty/suelta/mechanisms/google_token.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/thirdparty/suelta/mechanisms/google_token.py b/sleekxmpp/thirdparty/suelta/mechanisms/google_token.py index 75c55f18..19d1b5a3 100644 --- a/sleekxmpp/thirdparty/suelta/mechanisms/google_token.py +++ b/sleekxmpp/thirdparty/suelta/mechanisms/google_token.py @@ -42,7 +42,7 @@ class X_GOOGLE_TOKEN(Mechanism): resp = conn.getresponse().read() data = {} for line in resp.split(): - k, v = line.split(b'=') + k, v = line.split(b'=', 1) data[k] = v except Exception as e: raise e |