From: Fred L. D. <fd...@us...> - 2002-11-04 15:45:39
|
Update of /cvsroot/ht2html/ht2html In directory usw-pr-cvs1:/tmp/cvs-serv5874 Modified Files: PDOGenerator.py Log Message: Be compatible with Python 2.0. Index: PDOGenerator.py =================================================================== RCS file: /cvsroot/ht2html/ht2html/PDOGenerator.py,v retrieving revision 2.9 retrieving revision 2.10 diff -C2 -d -r2.9 -r2.10 *** PDOGenerator.py 29 Oct 2002 22:49:26 -0000 2.9 --- PDOGenerator.py 4 Nov 2002 15:45:35 -0000 2.10 *************** *** 50,54 **** p.sidebar.append(BLANKCELL) copyright = self.__parser.get('copyright', '%d' % ! time.localtime()[0]) p.sidebar.append((None, '© ' + copyright)) p.sidebar.append(('http://www.python.org/psf/', --- 50,54 ---- p.sidebar.append(BLANKCELL) copyright = self.__parser.get('copyright', '%d' % ! time.localtime(time.time())[0]) p.sidebar.append((None, '© ' + copyright)) p.sidebar.append(('http://www.python.org/psf/', |