From 78aad091d8e7a9612fb3f25cfc7fa6104751a55c Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Fri, 18 Feb 2011 20:58:01 -0500 Subject: fix syntax erorr in cc_puppet.py --- cloudinit/CloudConfig/cc_puppet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cloudinit/CloudConfig') diff --git a/cloudinit/CloudConfig/cc_puppet.py b/cloudinit/CloudConfig/cc_puppet.py index c458365d..64b7c237 100644 --- a/cloudinit/CloudConfig/cc_puppet.py +++ b/cloudinit/CloudConfig/cc_puppet.py @@ -61,7 +61,7 @@ def handle(name,cfg,cloud,log,args): else: #puppet_conf_fh.write("\n[%s]\n" % (cfg_name)) # If puppet.conf already has this section we don't want to write it again - if puppet_config.has_section(cfg_name) == False + if puppet_config.has_section(cfg_name) == False: puppet_config.add_section(cfg_name) # Iterate throug the config items, we'll use ConfigParser.set # to overwrite or create new items as needed -- cgit v1.2.3