From 99a1bbf9853e0b06385d7f221a90828e6c060132 Mon Sep 17 00:00:00 2001 From: Don Kirkby Date: Fri, 20 Feb 2015 14:47:41 -0800 Subject: [PATCH] Fixed typo in django/db/models/fields/files.py comment. --- django/db/models/fields/files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/fields/files.py b/django/db/models/fields/files.py index 5eb6e7845f1..ba79e927dd3 100644 --- a/django/db/models/fields/files.py +++ b/django/db/models/fields/files.py @@ -203,7 +203,7 @@ class FileDescriptor(object): instance.__dict__[self.field.name] = attr # Other types of files may be assigned as well, but they need to have - # the FieldFile interface added to the. Thus, we wrap any other type of + # the FieldFile interface added to them. Thus, we wrap any other type of # File inside a FieldFile (well, the field's attr_class, which is # usually FieldFile). elif isinstance(file, File) and not isinstance(file, FieldFile):