From: Steven Dake Date: Thu, 31 May 2012 03:06:23 +0000 (-0700) Subject: Remove python 2.7ism X-Git-Tag: 2014.1~1774 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=13e6e7d1a9309d8510d489d789dbd862c539d37d;p=openstack-build%2Fheat-build.git Remove python 2.7ism Change-Id: I9e74d79e42cc22aa0f0883fb1e1582be2860d842 Signed-off-by: Steven Dake --- 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)