Error in string format in HeatTemplateError message 13/53113/1
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Mon, 5 Mar 2018 17:49:53 +0000 (17:49 +0000)
committerRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Mon, 5 Mar 2018 17:50:18 +0000 (17:50 +0000)
There is a missing "s" in HeatTemplateError message [1].

[1]https://github.com/opnfv/yardstick/blob/8400c1895c49cb0c7802692f75d820fb5b8b7dc4/yardstick/common/exceptions.py#L70

JIRA: YARDSTICK-1047

Change-Id: Ieb6fbf0af35d624015dbf34f34de7c7cc9145dd5
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
yardstick/common/exceptions.py

index 9946bf1..7f72887 100644 (file)
@@ -67,7 +67,7 @@ class YardstickBannedModuleImported(YardstickException):
 class HeatTemplateError(YardstickException):
     """Error in Heat during the stack deployment"""
     message = ('Error in Heat during the creation of the OpenStack stack '
-               '"%(stack_name)"')
+               '"%(stack_name)s"')
 
 
 class IPv6RangeError(YardstickException):