Commit e90d2573 by Michael DeHaan

Merge pull request #8455 from nicocesar/version_check

if python >=2.7  use the option allow_no_value=True for ini_file.
parents cc1d1ad0 edea537c
...@@ -87,6 +87,7 @@ EXAMPLES = ''' ...@@ -87,6 +87,7 @@ EXAMPLES = '''
''' '''
import ConfigParser import ConfigParser
import sys
# ============================================================== # ==============================================================
# do_ini # do_ini
...@@ -94,7 +95,10 @@ import ConfigParser ...@@ -94,7 +95,10 @@ import ConfigParser
def do_ini(module, filename, section=None, option=None, value=None, state='present', backup=False): def do_ini(module, filename, section=None, option=None, value=None, state='present', backup=False):
changed = False changed = False
cp = ConfigParser.ConfigParser() if (sys.version_info[0] == 2 and sys.version_info[1] >= 7) or sys.version_info[0] >= 3:
cp = ConfigParser.ConfigParser(allow_no_value=True)
else:
cp = ConfigParser.ConfigParser()
cp.optionxform = identity cp.optionxform = identity
try: 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