summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-09-09 13:45:08 (GMT)
committerGitHub <noreply@github.com>2020-09-09 13:45:08 (GMT)
commit014b4ef0a175eb26759a3daa363cb230267d6775 (patch)
tree7db2dd9187f39dbce64391398b8c1b559cbcf2f7 /Doc/howto
parentb2376f9141625dfa3844ef8a568c91e0f0fecd24 (diff)
downloadcpython-014b4ef0a175eb26759a3daa363cb230267d6775.zip
cpython-014b4ef0a175eb26759a3daa363cb230267d6775.tar.gz
cpython-014b4ef0a175eb26759a3daa363cb230267d6775.tar.bz2
Fixes dead links to Django's logging config docs (GH-20823) (GH-22170)
(cherry picked from commit 714217f9561507bbc7218a02089d0e1da0239372)
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/logging-cookbook.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
index 17f4ff6..de0f834 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1368,7 +1368,7 @@ An example dictionary-based configuration
-----------------------------------------
Below is an example of a logging configuration dictionary - it's taken from
-the `documentation on the Django project <https://docs.djangoproject.com/en/1.9/topics/logging/#configuring-logging>`_.
+the `documentation on the Django project <https://docs.djangoproject.com/en/stable/topics/logging/#configuring-logging>`_.
This dictionary is passed to :func:`~config.dictConfig` to put the configuration into effect::
LOGGING = {
@@ -1424,7 +1424,7 @@ This dictionary is passed to :func:`~config.dictConfig` to put the configuration
}
For more information about this configuration, you can see the `relevant
-section <https://docs.djangoproject.com/en/1.9/topics/logging/#configuring-logging>`_
+section <https://docs.djangoproject.com/en/stable/topics/logging/#configuring-logging>`_
of the Django documentation.
.. _cookbook-rotator-namer: