summaryrefslogtreecommitdiff
path: root/distutils2/command/install_dist.py
diff options
context:
space:
mode:
Diffstat (limited to 'distutils2/command/install_dist.py')
-rw-r--r--distutils2/command/install_dist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils2/command/install_dist.py b/distutils2/command/install_dist.py
index 3fd4370..216c9e0 100644
--- a/distutils2/command/install_dist.py
+++ b/distutils2/command/install_dist.py
@@ -501,7 +501,7 @@ class install_dist(Command):
home = convert_path(os.path.expanduser("~"))
for name, path in self.config_vars.items():
if path.startswith(home) and not os.path.isdir(path):
- os.makedirs(path, 0o700)
+ os.makedirs(path, 00700)
# -- Command execution methods -------------------------------------