[wpdev-commits] xmlscripts/scripts book.py,1.3,1.4
Brought to you by:
rip,
thiagocorrea
|
From: <dar...@pr...> - 2004-01-31 01:48:32
|
Update of /cvsroot/wpdev/xmlscripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24630 Modified Files: book.py Log Message: Fix for books Index: book.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/book.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** book.py 28 Jan 2004 02:09:46 -0000 1.3 --- book.py 29 Jan 2004 22:37:52 -0000 1.4 *************** *** 103,107 **** return ! if len( content.strip() ) == 0: item.deltag('page%u' % page) return --- 103,107 ---- return ! if not content or len(content.strip()) == 0: item.deltag('page%u' % page) return |