summaryrefslogtreecommitdiffstats
path: root/openstack/common/cfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstack/common/cfg.py')
-rw-r--r--openstack/common/cfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/cfg.py b/openstack/common/cfg.py
index 66f9185..a9ac004 100644
--- a/openstack/common/cfg.py
+++ b/openstack/common/cfg.py
@@ -430,7 +430,7 @@ class Opt(object):
:param cparser: a ConfigParser object
:param section: a section name
"""
- return cparser.get(section, self.dest)
+ return cparser.get(section, self.dest, raw=True)
def _add_to_cli(self, parser, group=None):
"""Makes the option available in the command line interface.