From 83044a72815ba2a7cec1e6a343c6eeb091c68a30 Mon Sep 17 00:00:00 2001 From: Vishvananda Ishaya Date: Wed, 6 Jun 2012 11:26:18 -0700 Subject: Adds support for bol and eol spaces to ini files * Fixes bug 1009639 * Adds tests Change-Id: Id00563dfcc6f143c3e86ec380d66cffc967b8c48 --- openstack/common/iniparser.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'openstack') diff --git a/openstack/common/iniparser.py b/openstack/common/iniparser.py index 53ca023..e91eea5 100644 --- a/openstack/common/iniparser.py +++ b/openstack/common/iniparser.py @@ -52,7 +52,10 @@ class BaseParser(object): else: key, value = line[:colon], line[colon + 1:] - return key.strip(), [value.strip()] + value = value.strip() + if value[0] == value[-1] and value[0] == "\"" or value[0] == "'": + value = value[1:-1] + return key.strip(), [value] def parse(self, lineiter): key = None -- cgit