Fix some pep whitespace issues, which were not picked
up by the jenkins gate for some reason..
Change-Id: I9a3488d61a3cde4bb8038f3f1927eb0c1ad0f60c
Signed-off-by: Steven Hardy <shardy@redhat.com>
from heat import utils
from keystoneclient.v2_0 import client
+
def get_swift_template(options):
'''
Retrieve a template from the swift object store, using
return template_body
+
def get_template_param(options):
'''
Helper function to extract the template in whatever
format has been specified by the cli options
'''
- param={}
+ param = {}
if options.template_file:
param['TemplateBody'] = open(options.template_file).read()
elif options.template_url:
return param
+
@utils.catch_error('validate')
def template_validate(options, arguments):
'''