From: <as...@us...> - 2010-07-01 18:24:06
|
Revision: 8481 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8481&view=rev Author: astraw Date: 2010-07-01 18:24:00 +0000 (Thu, 01 Jul 2010) Log Message: ----------- don't fail in directories are missing Modified Paths: -------------- trunk/matplotlib/doc/make.py Modified: trunk/matplotlib/doc/make.py =================================================================== --- trunk/matplotlib/doc/make.py 2010-06-30 21:14:31 UTC (rev 8480) +++ trunk/matplotlib/doc/make.py 2010-07-01 18:24:00 UTC (rev 8481) @@ -61,8 +61,8 @@ print 'latex build has not been tested on windows' def clean(): - shutil.rmtree("build") - shutil.rmtree("examples") + shutil.rmtree("build", ignore_errors=True) + shutil.rmtree("examples", ignore_errors=True) for pattern in ['mpl_examples/api/*.png', 'mpl_examples/pylab_examples/*.png', 'mpl_examples/pylab_examples/*.pdf', This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |