From 13e6e7d1a9309d8510d489d789dbd862c539d37d Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Wed, 30 May 2012 20:06:23 -0700 Subject: [PATCH] Remove python 2.7ism Change-Id: I9e74d79e42cc22aa0f0883fb1e1582be2860d842 Signed-off-by: Steven Dake --- heat/cfntools/cfn_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/cfntools/cfn_helper.py b/heat/cfntools/cfn_helper.py index 4429ee1c..11a8349c 100644 --- a/heat/cfntools/cfn_helper.py +++ b/heat/cfntools/cfn_helper.py @@ -55,7 +55,7 @@ def to_boolean(b): class HupConfig(object): def __init__(self, fp_list): - self.config = ConfigParser.SafeConfigParser(allow_no_value=True) + self.config = ConfigParser.SafeConfigParser() for fp in fp_list: self.config.readfp(fp) -- 2.45.2