summaryrefslogtreecommitdiff
path: root/docs/faq/troubleshooting.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-01-18 11:51:29 -0500
committerGitHub <noreply@github.com>2017-01-18 11:51:29 -0500
commitf6acd1d271122d66de8061e75ae26137ddf02658 (patch)
tree26392839b0cf03b48696240d7ce6d835ec1011dc /docs/faq/troubleshooting.txt
parentc716fe87821df00f9f03ecc761c914d1682591a2 (diff)
Refs #23919 -- Removed Python 2 notes in docs.
Diffstat (limited to 'docs/faq/troubleshooting.txt')
-rw-r--r--docs/faq/troubleshooting.txt9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/faq/troubleshooting.txt b/docs/faq/troubleshooting.txt
index 1b2efd552f..5a56c6daa3 100644
--- a/docs/faq/troubleshooting.txt
+++ b/docs/faq/troubleshooting.txt
@@ -55,15 +55,6 @@ pitfalls producing this error:
case, please refer to your system documentation to learn how you can change
this to a UTF-8 locale.
-* You created raw bytestrings, which is easy to do on Python 2::
-
- my_string = 'café'
-
- Either use the ``u''`` prefix or even better, add the
- ``from __future__ import unicode_literals`` line at the top of your file
- so that your code will be compatible with Python 3.2 which doesn't support
- the ``u''`` prefix.
-
Related resources:
* :doc:`Unicode in Django </ref/unicode>`