summaryrefslogtreecommitdiffstats
path: root/vio/vio/pub/utils/fileutil.py
diff options
context:
space:
mode:
Diffstat (limited to 'vio/vio/pub/utils/fileutil.py')
-rw-r--r--vio/vio/pub/utils/fileutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/vio/vio/pub/utils/fileutil.py b/vio/vio/pub/utils/fileutil.py
index 9adf807..094e71e 100644
--- a/vio/vio/pub/utils/fileutil.py
+++ b/vio/vio/pub/utils/fileutil.py
@@ -20,7 +20,7 @@ logger = logging.getLogger(__name__)
def make_dirs(path):
if not os.path.exists(path):
- os.makedirs(path, 0777)
+ os.makedirs(path, mode=0o777)
def delete_dirs(path):