We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This line
python-engineio/engineio/asyncio_client.py
Line 252 in 7fa9575
ValueError: dictionary update sequence element #0 has length 3; 2 is required
The fix for that could be:
[cookie.split('=', 1) for cookie in value.split('; ')])
The text was updated successfully, but these errors were encountered:
Yes, I agree. I'll fix it. Thanks!
Sorry, something went wrong.
PRed
Awesome, thank you for taking care of it!
miguelgrinberg
Successfully merging a pull request may close this issue.
This line
python-engineio/engineio/asyncio_client.py
Line 252 in 7fa9575
causes a cookie with an equal in its value to throw an exception like
ValueError: dictionary update sequence element #0 has length 3; 2 is required
The fix for that could be:
The text was updated successfully, but these errors were encountered: