summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-04-11 09:34:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-04-11 09:34:07 (GMT)
commit336fc5bbb09b1b5d34b808ce749737691aaec9b6 (patch)
tree4ab015bc5ece07297b91dd8475401eb76d494d6d /Doc/howto
parent59865e7fe158bcedc0c2b6252593650b018cf738 (diff)
parent90be7333ea670277d781f04c24dbfdafb214aa8b (diff)
downloadcpython-336fc5bbb09b1b5d34b808ce749737691aaec9b6.zip
cpython-336fc5bbb09b1b5d34b808ce749737691aaec9b6.tar.gz
cpython-336fc5bbb09b1b5d34b808ce749737691aaec9b6.tar.bz2
Issue #25910: Fixed dead links in the docs.
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 aee95a8..5cde2c7 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1316,7 +1316,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.4/topics/logging/#configuring-logging>`_.
+the `documentation on the Django project <https://docs.djangoproject.com/en/1.9/topics/logging/#configuring-logging>`_.
This dictionary is passed to :func:`~config.dictConfig` to put the configuration into effect::
LOGGING = {
@@ -1372,7 +1372,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.6/topics/logging/#configuring-logging>`_
+section <https://docs.djangoproject.com/en/1.9/topics/logging/#configuring-logging>`_
of the Django documentation.
.. _cookbook-rotator-namer: