From f7c10ca74d0230ad4ece986a9cc4a2ebcb9136bf Mon Sep 17 00:00:00 2001 From: Johnny Goodnow Date: Fri, 25 Jan 2013 12:07:24 -0800 Subject: [PATCH] Always add Content-Length to HTTP PATCH. --- requests/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests/models.py b/requests/models.py index b05ef25..691f049 100644 --- a/requests/models.py +++ b/requests/models.py @@ -392,7 +392,7 @@ class PreparedRequest(RequestEncodingMixin, RequestHooksMixin): body.seek(0, 0) elif body is not None: self.headers['Content-Length'] = str(len(body)) - elif self.method in ('POST', 'PUT'): + elif self.method in ('POST', 'PUT', 'PATCH'): self.headers['Content-Length'] = '0' def prepare_auth(self, auth): -- 2.7.4