mirror of https://github.com/google/oss-fuzz.git
Use the newer python octal literal syntax (#70)
This commit is contained in:
parent
f480ae8b0e
commit
38f4df7ddc
|
@ -250,7 +250,7 @@ def generate(generate_args):
|
||||||
with open(build_sh_path, 'w') as f:
|
with open(build_sh_path, 'w') as f:
|
||||||
f.write(templates.BUILD_TEMPLATE % args.target_name)
|
f.write(templates.BUILD_TEMPLATE % args.target_name)
|
||||||
|
|
||||||
os.chmod(build_sh_path, 0755)
|
os.chmod(build_sh_path, 0o755)
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue