diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-12-30 19:47:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-12-30 19:47:25 (GMT) |
commit | 79ed84c7f2837239d5285ee33683cf0a52102529 (patch) | |
tree | 4334df4d25f09963c650ee4325018318b9c30015 /Doc/library/logging.rst | |
parent | 0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9 (diff) | |
download | cpython-79ed84c7f2837239d5285ee33683cf0a52102529.zip cpython-79ed84c7f2837239d5285ee33683cf0a52102529.tar.gz cpython-79ed84c7f2837239d5285ee33683cf0a52102529.tar.bz2 |
use booleans
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r-- | Doc/library/logging.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 2d71552..df5e5a5 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -65,7 +65,7 @@ instantiated directly, but always through the module-level function If this evaluates to false, logging messages are not passed to the handlers of ancestor loggers. - The constructor sets this attribute to 1. + The constructor sets this attribute to ``True``. .. method:: Logger.setLevel(lvl) |