8000 don't fail in directories are missing · matplotlib/matplotlib@8999f6f · GitHub
[go: up one dir, main page]

Skip to content

Commit 8999f6f

Browse files
committed
don't fail in directories are missing
svn path=/trunk/matplotlib/; revision=8481
1 parent d9b4b34 commit 8999f6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/make.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ def latex():
6161
print 'latex build has not been tested on windows'
6262

6363
def clean():
64-
shutil.rmtree("build")
65-
shutil.rmtree("examples")
64+
shutil.rmtree("build", ignore_errors=True)
65+
shutil.rmtree("examples", ignore_errors=True)
6666
for pattern in ['mpl_examples/api/*.png',
6767
'mpl_examples/pylab_examples/*.png',
6868
'mpl_examples/pylab_examples/*.pdf',

0 commit comments

Comments
 (0)
0