summaryrefslogtreecommitdiff
path: root/django/core/validators.py
diff options
context:
space:
mode:
authorBrian Rosner <brosner@gmail.com>2008-07-06 15:23:24 +0000
committerBrian Rosner <brosner@gmail.com>2008-07-06 15:23:24 +0000
commit8c8513281e9ed29840a082c05482a87d33f59f96 (patch)
treecfeb54f6adaeac83f8e009773bac81ab48b02a29 /django/core/validators.py
parent058a190a792fd1ffc5b0f9c522ce805ea58d655b (diff)
newforms-admin: Merged from trunk up to [7852].
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7853 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/validators.py')
-rw-r--r--django/core/validators.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/validators.py b/django/core/validators.py
index e728dbc0ed..3ef0adeda6 100644
--- a/django/core/validators.py
+++ b/django/core/validators.py
@@ -177,7 +177,7 @@ def isValidImage(field_data, all_data):
from PIL import Image
from cStringIO import StringIO
try:
- content = field_data['content']
+ content = field_data.read()
except TypeError:
raise ValidationError, _("No file was submitted. Check the encoding type on the form.")
try:
@@ -469,7 +469,7 @@ class HasAllowableSize(object):
def __call__(self, field_data, all_data):
try:
- content = field_data['content']
+ content = field_data.read()
except TypeError:
raise ValidationError, ugettext_lazy("No file was submitted. Check the encoding type on the form.")
if self.min_size is not None and len(content) < self.min_size: