From: Raymond Hettinger Date: Sun, 26 Jun 2011 13:29:06 +0000 (+0200) Subject: Issue #8890: Remove /tmp from examples. X-Git-Tag: v3.2.1rc2~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b34705ff379a44da549ed6615ed5043bb9ac0ec4;p=thirdparty%2FPython%2Fcpython.git Issue #8890: Remove /tmp from examples. --- diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 198d89231b18..c201e87dcb85 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -723,7 +723,7 @@ the basis for code meeting your own specific requirements:: # The size of the rotated files is made small so you can see the results easily. def listener_configurer(): root = logging.getLogger() - h = logging.handlers.RotatingFileHandler('/tmp/mptest.log', 'a', 300, 10) + h = logging.handlers.RotatingFileHandler('mptest.log', 'a', 300, 10) f = logging.Formatter('%(asctime)s %(processName)-10s %(name)s %(levelname)-8s %(message)s') h.setFormatter(f) root.addHandler(h)