summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2026-04-19 02:04:22 -0400
committerGitHub <noreply@github.com>2026-04-19 08:04:22 +0200
commit179aa21b6dfeb9a0560a8c2bbfcf056301fc619f (patch)
treef8d332194ace6d1e3958eb365310b82a869eb305 /docs
parentaad47fe1bfc789f4b0ad0dc6373c945663e91f93 (diff)
Fixed #37024 -- Made SITE_ID system check validation use Site._meta.pk.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/checks.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/ref/checks.txt b/docs/ref/checks.txt
index 16f0c5dac4..fb9187c2ac 100644
--- a/docs/ref/checks.txt
+++ b/docs/ref/checks.txt
@@ -967,7 +967,8 @@ The following checks are performed on any model using a
The following checks verify that :mod:`django.contrib.sites` is correctly
configured:
-* **sites.E101**: The :setting:`SITE_ID` setting must be an integer.
+* **sites.E101**: The :setting:`SITE_ID` setting must be of type ``<type>``.
+ *or* The :setting:`SITE_ID` setting failed to validate: ``<error>``.
``staticfiles``
---------------