Use the newer python octal literal syntax (#70)

This commit is contained in:
Alex Gaynor 2016-11-04 11:03:46 -04:00 committed by Mike Aizatsky
parent f480ae8b0e
commit 38f4df7ddc
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ def generate(generate_args):
with open(build_sh_path, 'w') as f:
f.write(templates.BUILD_TEMPLATE % args.target_name)
os.chmod(build_sh_path, 0755)
os.chmod(build_sh_path, 0o755)
return 0