From 38f4df7ddc3153a48c826a2cb7e6ab487d43af21 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 4 Nov 2016 11:03:46 -0400 Subject: [PATCH] Use the newer python octal literal syntax (#70) --- infra/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/helper.py b/infra/helper.py index f4f7ba417..339fb3196 100755 --- a/infra/helper.py +++ b/infra/helper.py @@ -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