diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-18 16:17:53 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-18 16:17:53 -0500 |
commit | d1dee0f045c8096904369270899d73ef8b6a96bf (patch) | |
tree | 1e5abbc1456077713b0268af0914cfd857b07477 /setuptools/command/install_scripts.py | |
parent | cae9a18f6df1e8acbab701e853fe076cdbae2467 (diff) | |
parent | cf307155b6c687ea2a9f5369aca5b03007db7b8b (diff) | |
download | python-setuptools-bitbucket-0.8b1.tar.gz |
Merge 0.7.3 release0.8b1
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 82456035..105dabca 100755 --- a/setuptools/command/install_scripts.py +++ b/setuptools/command/install_scripts.py @@ -50,5 +50,5 @@ class install_scripts(_install_scripts): f = open(target,"w"+mode) f.write(contents) f.close() - chmod(target, 0777-mask) + chmod(target, 0x1FF-mask) # 0777 |