aboutsummaryrefslogtreecommitdiff
path: root/Doc/howto
diff options
context:
space:
mode:
authorkevin seelbach <2671980+kevinseelbach@users.noreply.github.com>2020-06-14 12:23:47 -0500
committerGitHub <noreply@github.com>2020-06-14 10:23:47 -0700
commit714217f9561507bbc7218a02089d0e1da0239372 (patch)
tree680c5b6aeac7216bfba966c874976ffbcbd257e6 /Doc/howto
parentbpo-30064: Fix slow asyncio sock test (GH-20868) (diff)
downloadcpython-714217f9561507bbc7218a02089d0e1da0239372.tar.gz
cpython-714217f9561507bbc7218a02089d0e1da0239372.tar.bz2
cpython-714217f9561507bbc7218a02089d0e1da0239372.zip
Fixes dead links to Django's logging config docs (GH-20823)
Fixes two outdated URLs to point at the current "stable" version of Django's logging documentation. Automerge-Triggered-By: @vsajip
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 17f4ff6e474..de0f834551f 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: