utils.Mixer.is_multipart now only checks the request header.

This should fix some issues with testing multipart requests.
This commit is contained in:
Horst Gutmann 2009-05-19 11:14:11 +02:00
Родитель f81b2812fe
Коммит 0e43258e2b
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -140,7 +140,10 @@ class Mimer(object):
self.request = request
def is_multipart(self):
return 'Content-Disposition: form-data;' in self.request.raw_post_data
content_type = self.content_type()
if content_type is not None:
return content_type.lstrip().startswith('multipart')
return False
def loader_for_type(self, ctype):
"""