diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-05 03:50:59 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-05 03:50:59 -0400 |
commit | 3fdbb8f7fa5c84dca9a7ff309d71ae3aeff60009 (patch) | |
tree | bad3371156cad69022938c68d6c00033d44e35c4 /setuptools/command/install_scripts.py | |
parent | 574ed793b454314593a5edc64ebf112d3b159d2f (diff) | |
download | python-setuptools-git-3fdbb8f7fa5c84dca9a7ff309d71ae3aeff60009.tar.gz |
Use modern syntax for octal values
Diffstat (limited to 'setuptools/command/install_scripts.py')
-rwxr-xr-x | setuptools/command/install_scripts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/install_scripts.py b/setuptools/command/install_scripts.py index c19536bf..ac373193 100755 --- a/setuptools/command/install_scripts.py +++ b/setuptools/command/install_scripts.py @@ -49,4 +49,4 @@ class install_scripts(orig.install_scripts): f = open(target,"w"+mode) f.write(contents) f.close() - chmod(target, 0x1FF-mask) # 0777 + chmod(target, 0o777-mask) |