Skip to content

Commit 776e7e6

Browse files
authored
✏️ Fix typo (octal, not hexadecimal) (#1802)
2 parents 3615688 + 170e444 commit 776e7e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev/docker_data/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ def run_main():
739739
False))
740740
for config_file in (data_config_file, pipeline_config_file,
741741
minimized_config):
742-
os.chmod(config_file, 0x444) # Make config files readonly
742+
os.chmod(config_file, 0o444) # Make config files readonly
743743

744744
if len(sublogdirs) > 1:
745745
# If more than one run is included in the given data config

0 commit comments

Comments
 (0)