diff options
Diffstat (limited to 'test/sconsign/nonwritable.py')
-rw-r--r-- | test/sconsign/nonwritable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sconsign/nonwritable.py b/test/sconsign/nonwritable.py index 5ae55bb..6f12f18 100644 --- a/test/sconsign/nonwritable.py +++ b/test/sconsign/nonwritable.py @@ -59,7 +59,7 @@ def build2(target, source, env): import os.path open(str(target[0]), 'wb').write(open(str(source[0]), 'rb').read()) dir, file = os.path.split(str(target[0])) - os.chmod(dir, 0555) + os.chmod(dir, 0o555) return None B1 = Builder(action = build1) |