From 4b49cbfae47f279e1a3f33f4143ff416ddf68e3d Mon Sep 17 00:00:00 2001 From: mbacho Date: Fri, 16 May 2014 12:07:43 +0300 Subject: [PATCH] [1.6.x] Fixed typo in multipartparser.py Backport of 8a9d54aa69 from master --- django/http/multipartparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/http/multipartparser.py b/django/http/multipartparser.py index eeb435fa57..fcc7a12869 100644 --- a/django/http/multipartparser.py +++ b/django/http/multipartparser.py @@ -56,7 +56,7 @@ class MultiPartParser(object): """ # - # Content-Type should containt multipart and the boundary information. + # Content-Type should contain multipart and the boundary information. # content_type = META.get('HTTP_CONTENT_TYPE', META.get('CONTENT_TYPE', ''))