Fix file permissions mask

This commit is contained in:
Adam Gausmann 2023-05-11 20:30:18 -05:00
parent de61971cca
commit 1ea43e806d

View file

@ -129,7 +129,7 @@ def main():
output_file.write(output)
# Copy permissions from original file
output_path.chmod(template_path.stat().st_mode & 0x777)
output_path.chmod(template_path.stat().st_mode & 0o777)
if __name__ == '__main__':