From a7d4491a71632e85da042f9a486529ee7f6da89e Mon Sep 17 00:00:00 2001 From: Randall Leeds Date: Sun, 29 Oct 2017 21:43:41 -0700 Subject: [PATCH] Fix up documentation for dictConfig --- gunicorn/config.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/gunicorn/config.py b/gunicorn/config.py index fa1b8ab5..c127c657 100644 --- a/gunicorn/config.py +++ b/gunicorn/config.py @@ -1316,10 +1316,14 @@ class LogConfigDict(Setting): validator = validate_dict default = {} desc = """\ - The log config dictionary to use, using the standard Python logging - module's dictConfig format added in python 2.7. - If available, this takes precedence over logconfig, which uses the older - fileConfig format. + The log config dictionary to use, using the standard Python + logging module's dictionary configuration format. This option + takes precedence over the :ref:`logconfig` option, which uses the + older file configuration format. + + Format: https://docs.python.org/3/library/logging.config.html#logging.config.dictConfig + + .. versionadded:: 19.8 """