[Python-checkins] python/dist/src/Doc/lib liblogging.tex,1.19,1.20

vsajip at users.sourceforge.net vsajip at users.sourceforge.net
Wed Jul 7 17:59:52 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29400

Modified Files:
	liblogging.tex 
Log Message:
Replaced some tabs with spaces in verbatim section.

Index: liblogging.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liblogging.tex,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** liblogging.tex	3 Jul 2004 11:45:53 -0000	1.19
--- liblogging.tex	7 Jul 2004 15:59:49 -0000	1.20
***************
*** 398,404 ****
  
  logging.basicConfig(level=logging.DEBUG,
! 										format='%(asctime)s %(levelname)s %(message)s',
! 										filename='/tmp/myapp.log',
! 										filemode='w')
  logging.debug('A debug message')
  logging.info('Some information')
--- 398,404 ----
  
  logging.basicConfig(level=logging.DEBUG,
!                     format='%(asctime)s %(levelname)s %(message)s',
!                     filename='/tmp/myapp.log',
!                     filemode='w')
  logging.debug('A debug message')
  logging.info('Some information')
***************
*** 445,452 ****
  
  logging.basicConfig(level=logging.DEBUG,
! 										format='%(asctime)s %(levelname)-8s %(message)s',
! 										datefmt='%a, %d %b %Y %H:%M:%S',
! 										filename='/temp/myapp.log',
! 										filemode='w')
  logging.debug('A debug message')
  logging.info('Some information')
--- 445,452 ----
  
  logging.basicConfig(level=logging.DEBUG,
!                     format='%(asctime)s %(levelname)-8s %(message)s',
!                     datefmt='%a, %d %b %Y %H:%M:%S',
!                     filename='/temp/myapp.log',
!                     filemode='w')
  logging.debug('A debug message')
  logging.info('Some information')



More information about the Python-checkins mailing list