Merge "Correct the response info of template-version-list"

This commit is contained in:
Jenkins 2016-09-19 15:12:20 +00:00 committed by Gerrit Code Review
commit 24aed68398
1 changed files with 1 additions and 1 deletions

View File

@ -1489,7 +1489,7 @@ class EngineService(service.Service):
for name in mgr.names()]
versions = []
for t in sorted(_template_classes): # Sort to ensure dates come first
if issubclass(t[1], cfntemplate.CfnTemplate):
if issubclass(t[1], cfntemplate.CfnTemplateBase):
type = 'cfn'
else:
type = 'hot'