Update of /cvsroot/happydoc/HappyDoc
In directory usw-pr-cvs1:/tmp/cvs-serv2862
Modified Files:
test_happydoc.py
Log Message:
Only use webchecker on links when it is available.
Index: test_happydoc.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc/test_happydoc.py,v
retrieving revision 1.86
retrieving revision 1.87
diff -C2 -d -r1.86 -r1.87
*** test_happydoc.py 4 Aug 2002 10:47:57 -0000 1.86
--- test_happydoc.py 4 Aug 2002 12:37:53 -0000 1.87
***************
*** 99,102 ****
--- 99,106 ----
#
+ if os.name == 'posix':
+ WEBCHECKER_AVAILABLE=1
+ else:
+ WEBCHECKER_AVAILABLE=0
***************
*** 114,118 ****
return
! def runHappyDoc(self, modules=(), extraArgs=(), useWebChecker=0):
#
# Fix up output directory variable
--- 118,122 ----
return
! def runHappyDoc(self, modules=(), extraArgs=(), useWebChecker=WEBCHECKER_AVAILABLE):
#
# Fix up output directory variable
|