summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSkyiesac <jainsachi1202@gmail.com>2025-12-18 16:35:38 +0530
committerJacob Walls <jacobtylerwalls@gmail.com>2025-12-22 14:07:55 -0500
commit8346657aaff7da999dca32574e6595f8c9543a0c (patch)
tree048da1493f30448630d5b00323c1ee3b7c05615c /docs
parent9cc231e8243091519f5d627cd02ee40bbb853ced (diff)
[5.2.x] Fixed #36376 -- Fixed --no-color for command help in Python 3.14+.
https://github.com/python/cpython/pull/136809 made `color` default to True in ArgumentParser. Backport of d0d85cd165e54582cce98cf685252e771460a9d4 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/5.2.10.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/releases/5.2.10.txt b/docs/releases/5.2.10.txt
index 35626cfedc..0b7ab06d54 100644
--- a/docs/releases/5.2.10.txt
+++ b/docs/releases/5.2.10.txt
@@ -9,4 +9,6 @@ Django 5.2.10 fixes several bugs in 5.2.9.
Bugfixes
========
-* ...
+* Fixed a bug where management command colorized help (introduced in
+ Python 3.14) ignored the :option:`--no-color` option and the
+ :envvar:`DJANGO_COLORS` setting (:ticket:`36376`).