Skip to content

Commit b33c472

Browse files
committed
✏️ Fix typo (octal, not hexadecimal)
[skip ci]
1 parent 183bc34 commit b33c472

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)