From be91e874670570e9da81ff2a934c0af8a7efdb44 Mon Sep 17 00:00:00 2001 From: jcd000 Date: Thu, 11 Apr 2024 10:15:20 +0300 Subject: [PATCH] Fixes crashes from patched form boundary Fixes a regression which would cause our server to return error 400, induced from this commit: https://github.com/requests-cache/requests-cache/pull/919 --- requests_cache/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests_cache/_utils.py b/requests_cache/_utils.py index eaaa7e53..22be04e0 100644 --- a/requests_cache/_utils.py +++ b/requests_cache/_utils.py @@ -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')