mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-08 15:05:15 +02:00
Merge pull request #845 from jbect/fix-issue-844
Use os.makedirs instead of matplotlib.cbook.mkdirs
This commit is contained in:
commit
5d44eadfae
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