Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9b4b34 commit 8999f6fCopy full SHA for 8999f6f
1 file changed
doc/make.py
@@ -61,8 +61,8 @@ def latex():
61
print 'latex build has not been tested on windows'
62
63
def clean():
64
- shutil.rmtree("build")
65
- shutil.rmtree("examples")
+ shutil.rmtree("build", ignore_errors=True)
+ shutil.rmtree("examples", ignore_errors=True)
66
for pattern in ['mpl_examples/api/*.png',
67
'mpl_examples/pylab_examples/*.png',
68
'mpl_examples/pylab_examples/*.pdf',
0 commit comments