From 3fda93604c8a12318a17f39ad49e59663c3f3a5c Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 20 Jul 2006 20:11:57 +0000 Subject: [PATCH] markup fix --- Doc/lib/liblogging.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/lib/liblogging.tex b/Doc/lib/liblogging.tex index f2975575c71..cc4429420fe 100644 --- a/Doc/lib/liblogging.tex +++ b/Doc/lib/liblogging.tex @@ -1069,7 +1069,7 @@ list of possible values is, note that they are not case sensitive: If \var{backupCount} is non-zero, the system will save old log files by appending extensions to the filename. The extensions are date-and-time -based, using the strftime format \code{%Y-%m-%d_%H-%M-%S} or a leading +based, using the strftime format \code{\%Y-\%m-\%d_\%H-\%M-\%S} or a leading portion thereof, depending on the rollover interval. At most \var{backupCount} files will be kept, and if more would be created when rollover occurs, the oldest one is deleted. @@ -1537,7 +1537,7 @@ to start the server, and which you can \method{join()} when appropriate. To stop the server, call \function{stopListening()}. To send a configuration to the socket, read in the configuration file and send it to the socket as a string of bytes preceded by a four-byte length packed in binary using -struct.\code{pack(">L", n)}. +struct.\code{pack('>L', n)}. \end{funcdesc} \begin{funcdesc}{stopListening}{}