fix syntax erorr in cc_puppet.py

This commit is contained in:
Scott Moser 2011-02-18 20:58:01 -05:00
parent b1335ed858
commit 804749aca9

View File

@ -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