Added option to support case-insensitive keys

This change allows keys in INI format to be any case.
The default ConfigParse module sets this to be lower
however in some cases keys are needed to be upper and/or
mixed.

Change-Id: I4e0dedb1b73ee596929bd425af6b0aaefd3a6c27
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2016-04-21 16:09:18 -05:00
parent cd47eda77b
commit f946160dd0
No known key found for this signature in database
GPG Key ID: 69FEFFC5E2D9273F
2 changed files with 2 additions and 0 deletions

View File

@ -278,6 +278,7 @@ class ActionModule(object):
dict_type=MultiKeyDict,
allow_no_value=True
)
config.optionxform = str
config_object = io.BytesIO(resultant.encode('utf-8'))
config.readfp(config_object)
for section, items in config_overrides.items():

View File

@ -277,6 +277,7 @@ class ActionModule(ActionBase):
allow_no_value=True,
dict_type=MultiKeyDict
)
config.optionxform = str
except Exception:
config = ConfigTemplateParser(dict_type=MultiKeyDict)