summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac/macostools.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/plat-mac/macostools.py')
-rw-r--r--Lib/plat-mac/macostools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-mac/macostools.py b/Lib/plat-mac/macostools.py
index 27d2f83..67d32e7 100644
--- a/Lib/plat-mac/macostools.py
+++ b/Lib/plat-mac/macostools.py
@@ -61,7 +61,7 @@ def mkdirs(dst):
if os.sep == ':' and not ':' in head:
head = head + ':'
mkdirs(head)
- os.mkdir(dst, 0777)
+ os.mkdir(dst, 0o777)
def touched(dst):
"""Tell the finder a file has changed. No-op on MacOSX."""