From dc8a798ca13efe0e8fa2b394ab350506c90e4235 Mon Sep 17 00:00:00 2001 From: Dario Ernst Date: Thu, 3 Oct 2019 08:32:36 +0000 Subject: [PATCH] Use correct octal notation for python3 --- core/dovecot/start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dovecot/start.py b/core/dovecot/start.py index 3a85f64b..d61c40eb 100755 --- a/core/dovecot/start.py +++ b/core/dovecot/start.py @@ -37,7 +37,7 @@ os.makedirs("/conf/bin", exist_ok=True) for script_file in glob.glob("/conf/*.script"): out_file = os.path.join("/conf/bin/", os.path.basename(script_file).replace('.script','')) conf.jinja(script_file, os.environ, out_file) - os.chmod(out_file, 0555) + os.chmod(out_file, 0o555) # Run Podop, then postfix multiprocessing.Process(target=start_podop).start()