1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[2.1.x] Fixed word choice in ContentFile example.

Backport of 38e904e265 from master
This commit is contained in:
Josh Schneier
2018-07-07 17:20:02 -04:00
committed by Tim Graham
parent d10103a79d
commit 0211393b8c

View File

@@ -103,7 +103,7 @@ The ``ContentFile`` class
from django.core.files.base import ContentFile from django.core.files.base import ContentFile
f1 = ContentFile("esta sentencia está en español") f1 = ContentFile("esta frase está en español")
f2 = ContentFile(b"these are bytes") f2 = ContentFile(b"these are bytes")
.. currentmodule:: django.core.files.images .. currentmodule:: django.core.files.images