Refs #27753 -- Favored SafeString over SafeText.

This commit is contained in:
Tim Graham 2019-02-05 09:38:29 -05:00
parent d55e882927
commit 77d25dbd0f
8 changed files with 25 additions and 31 deletions

View file

@ -200,12 +200,12 @@ passed around inside the template code:
to be interpreted as-is on the client side.
Internally, these strings are of type
:class:`~django.utils.safestring.SafeText`. You can test for them
:class:`~django.utils.safestring.SafeString`. You can test for them
using code like::
from django.utils.safestring import SafeText
from django.utils.safestring import SafeString
if isinstance(value, SafeText):
if isinstance(value, SafeString):
# Do something with the "safe" string.
...