]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixes dead links to Django's logging config docs (GH-20823) (GH-22171)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 9 Sep 2020 13:40:41 +0000 (06:40 -0700)
committerGitHub <noreply@github.com>
Wed, 9 Sep 2020 13:40:41 +0000 (14:40 +0100)
(cherry picked from commit 714217f9561507bbc7218a02089d0e1da0239372)

Doc/howto/logging-cookbook.rst

index 17f4ff6e474c23ef688d97600484176f82cf53a7..de0f834551f5ddd61d2b0990200f80bce076f942 100644 (file)
@@ -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: