[Happydoc-checkins] CVS: HappyDoc test_happydoc.py,1.78,1.79
Brought to you by:
doughellmann,
krlosaqp
From: Doug H. <dou...@us...> - 2002-02-03 18:51:32
|
Update of /cvsroot/happydoc/HappyDoc In directory usw-pr-cvs1:/tmp/cvs-serv31313 Modified Files: test_happydoc.py Log Message: Fixed handling for main program to branch based on platform type. Index: test_happydoc.py =================================================================== RCS file: /cvsroot/happydoc/HappyDoc/test_happydoc.py,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** test_happydoc.py 2002/02/03 18:45:12 1.78 --- test_happydoc.py 2002/02/03 18:51:28 1.79 *************** *** 759,762 **** if __name__ == '__main__': ! #main(sys.argv[1:]) ! debug() --- 759,764 ---- if __name__ == '__main__': ! if os.name == 'nt': ! debug() ! else: ! main(sys.argv[1:]) |