Commit d49f8c28 by Michael DeHaan

Merge pull request #8400 from nicocesar/devel

"allow_no_value=True" for ini_file module
parents a88dc7a2 cbdc9f11
......@@ -94,7 +94,7 @@ import ConfigParser
def do_ini(module, filename, section=None, option=None, value=None, state='present', backup=False):
changed = False
cp = ConfigParser.ConfigParser()
cp = ConfigParser.ConfigParser(allow_no_value=True)
cp.optionxform = identity
try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment