diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2014-01-15 15:09:05 +0000 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2014-01-15 15:09:05 +0000 |
commit | cbefe3b9a0b9efe0e14b53c8737a633f81c22dd2 (patch) | |
tree | 926446bb6e8ac380f2081108acd2c15a8eb89185 /Doc/howto/logging.rst | |
parent | 350e623623a95466fc8cefc08884d5c131deadc4 (diff) | |
download | cpython-git-cbefe3b9a0b9efe0e14b53c8737a633f81c22dd2.tar.gz |
Added cookbook entry on alternative formatting styles.
Diffstat (limited to 'Doc/howto/logging.rst')
-rw-r--r-- | Doc/howto/logging.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index 6cd0677863..55b1c867dd 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -239,7 +239,7 @@ uses the old, %-style of string formatting. This is for backwards compatibility: the logging package pre-dates newer formatting options such as :meth:`str.format` and :class:`string.Template`. These newer formatting options *are* supported, but exploring them is outside the scope of this -tutorial. +tutorial: see :ref:`formatting-styles` for more information. Changing the format of displayed messages |