From 6e80eb09540a5886d1851e45c47109f5573e2d5f Mon Sep 17 00:00:00 2001 From: Mokaddem Date: Tue, 28 Mar 2017 09:55:59 +0200 Subject: [PATCH] Typo --- bin/Update-conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/Update-conf.py b/bin/Update-conf.py index b945dabe..7ceada75 100755 --- a/bin/Update-conf.py +++ b/bin/Update-conf.py @@ -64,12 +64,12 @@ def main(): if resp != 'y': return else: - #Do not keep item order in section. New items appened + #Do not keep item ordering in section. New items appened for section in missingItem: for item, value in dicoMissingItem[section]: cfg.set(section, item, value) - #Keep sections order while updating the config file + #Keep sections ordering while updating the config file new_dico = add_items_to_correct_position(cfgSample._sections, cfg._sections, missingSection, dicoMissingSection) cfg._sections = new_dico