diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2018-03-05 20:52:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-05 20:52:26 +0000 |
commit | 7a78031d2a8daabd880e33b26bc7414780f36a14 (patch) | |
tree | 1da2d1b309d429b0e7fa48948b223ab05130656d | |
parent | d9a19da691a0cc258d26a2967983396b1c034b65 (diff) | |
parent | e5dbc64e2893788de4bd79530c1dbeb75095d930 (diff) |
Merge "Error in string format in HeatTemplateError message"
-rw-r--r-- | yardstick/common/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/common/exceptions.py b/yardstick/common/exceptions.py index 9946bf1cb..7f72887e1 100644 --- a/yardstick/common/exceptions.py +++ b/yardstick/common/exceptions.py @@ -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): |