Message140951
Same bug. I’ve added debug prints to find out the rights (UNIX permission system) of the files, and they’re very strange: --wxrw--wt (the read bit is missing, and the t is strange). It should be -rwxr-xr-x, like other programs.
The bug is likely this change:
- os.chmod(target, 0755)
+ os.chmod(target, 755)
An octal literal in 3.x is 0o755. Decimal 755 means 0o1363, which is not good :)
I’ll let you check the Python docs and Wikipedia if you don’t know these rxw or octal codes. |
|
Date |
User |
Action |
Args |
2011-07-23 09:40:36 | eric.araujo | set | recipients:
+ eric.araujo, mhammond, fdrake, vinay.sajip, ceder, tim.golden, tarek, alexis, higery |
2011-07-23 09:40:36 | eric.araujo | set | messageid: <1311414036.5.0.993654123567.issue12394@psf.upfronthosting.co.za> |
2011-07-23 09:40:35 | eric.araujo | link | issue12394 messages |
2011-07-23 09:40:35 | eric.araujo | create | |
|