You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
line 60 in rfc2617.py:
for n,v in map(lambda x: x.strip().split('='), rest.split(',') if rest else []):
should be:
for n,v in map(lambda x: x.strip().split('=', 1), rest.split(',') if rest else []):
otherwise, if value contains more then one '=', a "too many value unpack" exception will be thrown.
The text was updated successfully, but these errors were encountered:
line 60 in rfc2617.py:
for n,v in map(lambda x: x.strip().split('='), rest.split(',') if rest else []):
should be:
for n,v in map(lambda x: x.strip().split('=', 1), rest.split(',') if rest else []):
otherwise, if value contains more then one '=', a "too many value unpack" exception will be thrown.
The text was updated successfully, but these errors were encountered: