small change ... in order to get changed signal correct, move DEFAULT section test upward.

reviewable/pr18780/r1
Robert Parrott 11 years ago
parent adaef79aaf
commit 574674958d

@ -117,10 +117,10 @@ def do_ini(module, filename, section=None, option=None, value=None, state='prese
if state == 'present': if state == 'present':
if cp.has_section(section) == False: # DEFAULT section is always there by DEFAULT, so never try to add it.
if cp.has_section(section) == False and section.upper() != 'DEFAULT':
if section.upper() != 'DEFAULT': cp.add_section(section)
cp.add_section(section)
changed = True changed = True
if option is not None and value is not None: if option is not None and value is not None:

Loading…
Cancel
Save