summaryrefslogtreecommitdiff
path: root/docs/releases/3.2.1.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-04-21 09:41:37 +0200
committerGitHub <noreply@github.com>2021-04-21 09:41:37 +0200
commit34d1905712d33e72c76b3a55a4fc24abbd11be6c (patch)
tree5f85f0bc6a22004cd4e562deb22fd8434cde9fee /docs/releases/3.2.1.txt
parent5c73fbb6a93ee214678f02ba4027f18dff49337b (diff)
downloaddjango-34d1905712d33e72c76b3a55a4fc24abbd11be6c.tar.gz
Fixed #32665 -- Fixed caches system check crash when STATICFILES_DIRS is a list of 2-tuples.
Thanks Jared Lockhart for the report. Regression in c36075ac1dddfa986340b1a5e15fe48833322372.
Diffstat (limited to 'docs/releases/3.2.1.txt')
-rw-r--r--docs/releases/3.2.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.2.1.txt b/docs/releases/3.2.1.txt
index 76291f57c1..4aece451e1 100644
--- a/docs/releases/3.2.1.txt
+++ b/docs/releases/3.2.1.txt
@@ -47,3 +47,7 @@ Bugfixes
* Fixed a regression in Django 3.2 that stopped the shift-key modifier
selecting multiple rows in the admin changelist (:ticket:`32647`).
+
+* Fixed a bug in Django 3.2 where a system check would crash on the
+ :setting:`STATICFILES_DIRS` setting with a list of 2-tuples of
+ ``(prefix, path)`` (:ticket:`32665`).