summaryrefslogtreecommitdiff
path: root/django/utils/encoding.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils/encoding.py')
-rw-r--r--django/utils/encoding.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/utils/encoding.py b/django/utils/encoding.py
index a7239f4b0f..bb07deb894 100644
--- a/django/utils/encoding.py
+++ b/django/utils/encoding.py
@@ -152,13 +152,13 @@ else:
smart_unicode = smart_text
force_unicode = force_text
-smart_str.__doc__ = """\
+smart_str.__doc__ = """
Apply smart_text in Python 3 and smart_bytes in Python 2.
This is suitable for writing to sys.stdout (for instance).
"""
-force_str.__doc__ = """\
+force_str.__doc__ = """
Apply force_text in Python 3 and force_bytes in Python 2.
"""