mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
Typo
This commit is contained in:
parent
c79d4d65c8
commit
6e80eb0954
1 changed files with 2 additions and 2 deletions
|
@ -64,12 +64,12 @@ def main():
|
||||||
if resp != 'y':
|
if resp != 'y':
|
||||||
return
|
return
|
||||||
else:
|
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 section in missingItem:
|
||||||
for item, value in dicoMissingItem[section]:
|
for item, value in dicoMissingItem[section]:
|
||||||
cfg.set(section, item, value)
|
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)
|
new_dico = add_items_to_correct_position(cfgSample._sections, cfg._sections, missingSection, dicoMissingSection)
|
||||||
cfg._sections = new_dico
|
cfg._sections = new_dico
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue