summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDon Kirkby <donkirkby@users.noreply.github.com>2015-02-20 14:47:41 -0800
committerTim Graham <timograham@gmail.com>2015-02-20 20:11:58 -0500
commit5131aec7d22c1b54b4081080ae51402fc0b82f19 (patch)
tree86daf5b04a7e372cecc76eafbf2c1b36f28d2402
parent3207fcd0a0b90e677b1bb5cf662dee21c659adab (diff)
[1.8.x] Fixed typo in django/db/models/fields/files.py comment.
Backport of 99a1bbf9853e0b06385d7f221a90828e6c060132 from master
-rw-r--r--django/db/models/fields/files.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/fields/files.py b/django/db/models/fields/files.py
index 5eb6e7845f..ba79e927dd 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):