Merge "Modify variable's using method in Log Messages"

This commit is contained in:
Jenkins 2016-11-13 10:06:51 +00:00 committed by Gerrit Code Review
commit ee7791e34f

View File

@ -79,11 +79,11 @@ class ScenarioRepository(object):
result = syntax_validation(template_def)
if not result.is_valid:
LOG.info('Unable to load template: %s' % result.comment)
LOG.info('Unable to load template: %s', result.comment)
else:
result = content_validation(template_def)
if not result.is_valid:
LOG.info('Unable to load template: %s' % result.comment)
LOG.info('Unable to load template: %s', result.comment)
template_uuid = uuid.uuid4()
self.templates[str(template_uuid)] = Template(template_uuid,