diff options
author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-09-22 14:01:57 +0200 |
---|---|---|
committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-09-22 14:04:10 +0200 |
commit | a5b062576bda29abe93504dbcb126e644d07f9dd (patch) | |
tree | 7a036e4ae103cd5002c0965940a8b6adc21886ca /django/utils/encoding.py | |
parent | ee0ef1b0948c19bc5fee06a6b9b4286b879f81c1 (diff) | |
download | django-a5b062576bda29abe93504dbcb126e644d07f9dd.tar.gz |
Removed a few trailing backslashes.
We have always been at war with trailing backslashes.
Diffstat (limited to 'django/utils/encoding.py')
-rw-r--r-- | django/utils/encoding.py | 4 |
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. """ |