Fixed trivial issue in exception message

Change-Id: I2837875f82a87394be502016a21642b1dffde1f0
This commit is contained in:
hardik 2016-07-29 12:17:45 +05:30
parent 001598237c
commit b2aabd221a
2 changed files with 6 additions and 4 deletions

View File

@ -36,8 +36,9 @@ def update_actions(definition, scope='private', identifier=None):
if identifier and len(actions) > 1:
raise exc.InputException(
"More than one actions are not supported for update with UUID "
"provided."
"More than one actions are not supported for "
"update with identifier. [identifier: %s]" %
identifier
)
db_actions = []

View File

@ -86,8 +86,9 @@ def update_workflows(definition, scope='private', identifier=None):
if identifier and len(wfs) > 1:
raise exc.InputException(
"More than one workflows are not supported for update with UUID "
"provided."
"More than one workflows are not supported for "
"update with identifier. [identifier: %s]" %
identifier
)
db_wfs = []