summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/files/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/files/base.py b/django/core/files/base.py
index 5403d4a702..63e3ee99a9 100644
--- a/django/core/files/base.py
+++ b/django/core/files/base.py
@@ -120,7 +120,7 @@ class File(FileProxyMixin):
class ContentFile(File):
"""
- A File-like object that take just raw content, rather than an actual file.
+ A File-like object that takes just raw content, rather than an actual file.
"""
def __init__(self, content, name=None):
stream_class = StringIO if isinstance(content, str) else BytesIO