Commit c003c86f authored by Vinay Sajip's avatar Vinay Sajip

Updated to fix errors on 2.5.

--HG--
branch : single-codebase
parent 8e657eac
......@@ -800,7 +800,7 @@ Please make the appropriate changes for your system and try again.
f = open(target,"w"+mode)
f.write(contents)
f.close()
chmod(target, 0o777-mask)
chmod(target,0x1FF - mask) # 0777
......
......@@ -50,5 +50,5 @@ class install_scripts(_install_scripts):
f = open(target,"w"+mode)
f.write(contents)
f.close()
chmod(target, 0o777-mask)
chmod(target,0x1FF - mask) # 0777
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment