summaryrefslogtreecommitdiffstats
path: root/BaseTools/Source/Python/Common/LongFilePathOs.py
diff options
context:
space:
mode:
Diffstat (limited to 'BaseTools/Source/Python/Common/LongFilePathOs.py')
-rw-r--r--BaseTools/Source/Python/Common/LongFilePathOs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/Common/LongFilePathOs.py b/BaseTools/Source/Python/Common/LongFilePathOs.py
index 2cebbb276b..4939a8bc73 100644
--- a/BaseTools/Source/Python/Common/LongFilePathOs.py
+++ b/BaseTools/Source/Python/Common/LongFilePathOs.py
@@ -41,7 +41,7 @@ def rmdir(path):
def mkdir(path):
return os.mkdir(LongFilePath(path))
-def makedirs(name, mode=0777):
+def makedirs(name, mode=0o777):
return os.makedirs(LongFilePath(name), mode)
def rename(old, new):