@@ -243,7 +243,6 @@ def generate_doxygen_xml(app):
243
243
# Doxygen can't create a nested folder. Help it by
244
244
# creating the first folder
245
245
246
- print ("Foobar" )
247
246
try :
248
247
os .makedirs (os .path .join (CWD , "temp" ))
249
248
except OSError as error :
@@ -278,10 +277,7 @@ def generate_doxygen_xml(app):
278
277
# Call Doxygen to build the documentation
279
278
try :
280
279
# Log the Doxygen version number
281
- print ("{} -v" .format (doxygen ))
282
280
subprocess .call (doxygen + " -v" , cwd = CWD , shell = True )
283
-
284
- print (doxygen )
285
281
retcode = subprocess .call (doxygen , cwd = CWD , shell = True )
286
282
if retcode < 0 :
287
283
sys .stderr .write ("doxygen terminated by signal %s" % (- retcode ))
@@ -291,12 +287,10 @@ def generate_doxygen_xml(app):
291
287
# If on ReadTheDocs.org, copy doxygen to public folder
292
288
if _ON_RTD :
293
289
try :
294
- print ("ls" )
295
- subprocess .call ("ls" , cwd = "." , shell = True )
296
-
297
- print ("cp -r temp/html ../_readthedocs/html/doxygen" )
298
290
retcode = subprocess .call (
299
- "cp -r temp/html ../_readthedocs/html/doxygen" , cwd = "." , shell = True )
291
+ "cp -r temp/html ../_readthedocs/html/doxygen" ,
292
+ cwd = "." ,
293
+ shell = True )
300
294
if retcode < 0 :
301
295
sys .stderr .write ("cp terminated by signal %s" % (- retcode ))
302
296
except OSError as error :
0 commit comments