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)
commitc016f46df5a868ca9d60d52f91094a67c6bac391 (patch)
tree8e0a6cee4db17c275008aa89829cf54ae519aab8
parent79e50c659ab769acad641117671a34ebcd7c53d9 (diff)
downloadcpython-c016f46df5a868ca9d60d52f91094a67c6bac391.zip
cpython-c016f46df5a868ca9d60d52f91094a67c6bac391.tar.gz
cpython-c016f46df5a868ca9d60d52f91094a67c6bac391.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 5f6aa7e..0119e0c 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -67,7 +67,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)