summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-12-30 19:47:25 (GMT)
committerBenjamin Peterson <benjamin@python.org>2011-12-30 19:47:25 (GMT)
commit79ed84c7f2837239d5285ee33683cf0a52102529 (patch)
tree4334df4d25f09963c650ee4325018318b9c30015
parent0e61350d3a8769802a5cbe0895ec24cf0e1fc9b9 (diff)
downloadcpython-79ed84c7f2837239d5285ee33683cf0a52102529.zip
cpython-79ed84c7f2837239d5285ee33683cf0a52102529.tar.gz
cpython-79ed84c7f2837239d5285ee33683cf0a52102529.tar.bz2
use booleans
-rw-r--r--Doc/library/logging.rst2
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)