From 0b29f74e08a4cb93f49d4bd7e1a056a9ed9236bc Mon Sep 17 00:00:00 2001 From: Spitfireap <45575529+Spitfireap@users.noreply.github.com> Date: Sat, 11 Mar 2023 12:41:16 +0000 Subject: [PATCH] typo, review fix --- modoboa_installer/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modoboa_installer/utils.py b/modoboa_installer/utils.py index 2b614a8..52fb371 100644 --- a/modoboa_installer/utils.py +++ b/modoboa_installer/utils.py @@ -321,7 +321,7 @@ def get_entry_value(entry, interactive): def load_config_template(interactive): - """Instanciate a configParser object with the predefined template.""" + """Instantiate a configParser object with the predefined template.""" tpl_dict = config_dict_template.ConfigDictTemplate config = configparser.ConfigParser() # only ask about options we need, else still generate default @@ -398,6 +398,7 @@ def update_config(path): os.chmod(dest, stat.S_IRUSR | stat.S_IWUSR) return dest + return None def gen_config(dest, interactive=False):