summaryrefslogtreecommitdiff
path: root/docs/python3.rst
diff options
context:
space:
mode:
authorMrTact <mrtact@gmail.com>2014-12-01 11:12:30 -0600
committerMrTact <mrtact@gmail.com>2014-12-01 11:12:30 -0600
commitf2f695d1cb3e36b4bb6682d09dc7d86574402337 (patch)
tree51b114dc0ce90ccf941bdaf7b661269266efac67 /docs/python3.rst
parent308cc08a711f1ec372fd7fa5acca8e8a1a04ee70 (diff)
downloadclick-f2f695d1cb3e36b4bb6682d09dc7d86574402337.tar.gz
Fix erroneous region code on python3 doc page
There is no territory with a region code of "EN"; the correct one is "US." At least, it didn't work when I tried it, but "en_US" did!
Diffstat (limited to 'docs/python3.rst')
-rw-r--r--docs/python3.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/python3.rst b/docs/python3.rst
index 7a3b97c..c2f832a 100644
--- a/docs/python3.rst
+++ b/docs/python3.rst
@@ -133,7 +133,7 @@ by exporting the locale to ``de_DE.utf-8``::
export LC_ALL=de_DE.utf-8
export LANG=de_DE.utf-8
-If you are on a US machine, ``en_EN.utf-8`` is the encoding of choice. On
+If you are on a US machine, ``en_US.utf-8`` is the encoding of choice. On
some newer Linux systems, you could also try ``C.UTF-8`` as the locale::
export LC_ALL=C.UTF-8