Skip to content

Commit

Permalink
Fixes crashes from patched form boundary
Browse files Browse the repository at this point in the history
Fixes a regression which would cause our server to return error 400, induced from this commit:
#919
  • Loading branch information
jcd000 committed Apr 11, 2024
1 parent a5d5365 commit be91e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requests_cache/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from urllib3 import filepost

FORM_BOUNDARY = '==requests-cache-form-boundary=='
FORM_BOUNDARY = '--requests-cache-form-boundary--'

KwargDict = Dict[str, Any]
logger = getLogger('requests_cache')
Expand Down

0 comments on commit be91e87

Please sign in to comment.