summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorSulabh Katila <sulabhkatila@gmail.com>2023-08-30 23:03:30 -0400
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-01 11:26:29 +0200
commit9a9620dda649dcdb685662bbd9cb409bfeff4214 (patch)
tree73ec7f581a52809ccb0ee68bc451f3093e65e884 /docs/howto
parent9cc0d7f7f85cecc3ad15bbc471fe6a08e4f515b6 (diff)
Fixed #34768 -- Avoided initializing colorama on non-Windows platforms.
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/windows.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/windows.txt b/docs/howto/windows.txt
index fbac82f967..d0d2b9a119 100644
--- a/docs/howto/windows.txt
+++ b/docs/howto/windows.txt
@@ -103,12 +103,12 @@ terminal. In modern terminals this should work for both CMD and PowerShell. If
for some reason this needs to be disabled, set the environmental variable
:envvar:`DJANGO_COLORS` to ``nocolor``.
-On older Windows versions, or legacy terminals, :pypi:`colorama` must be
+On older Windows versions, or legacy terminals, :pypi:`colorama` 0.4.6+ must be
installed to enable syntax coloring:
.. code-block:: doscon
- ...\> py -m pip install colorama
+ ...\> py -m pip install "colorama >= 0.4.6"
See :ref:`syntax-coloring` for more information on color settings.