We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa8330 commit 8247246Copy full SHA for 8247246
visbrain/io/path.py
@@ -30,7 +30,7 @@ def path_to_visbrain_data(file=None, folder=None):
30
folder = '' if not isinstance(folder, str) else folder
31
vb_path = os.path.join(vb_path, folder)
32
if not os.path.exists(vb_path):
33
- os.mkdir(vb_path)
+ os.makedirs(vb_path)
34
logger.info("visbrain_data has been added to %s" % vb_path)
35
file = '' if not isinstance(file, str) else file
36
return os.path.join(vb_path, file)
0 commit comments