mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-25 21:06:23 +02:00
plotting_tests.py: Use os.makedirs instead of matplotlib.cbook.mkdirs (fix #844)
This commit is contained in:
parent
4ced6146fb
commit
599e7a4b24
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ def _image_directories():
|
|||
result_dir = os.path.join(basedir, 'testresult','.')
|
||||
baseline_dir = os.path.join(basedir, 'baseline','.')
|
||||
if not os.path.exists(result_dir):
|
||||
cbook.mkdirs(result_dir)
|
||||
os.makedirs(result_dir)
|
||||
return baseline_dir, result_dir
|
||||
|
||||
baseline_dir, result_dir = _image_directories()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue