Merge "Fixed trivial issue in exception message"

This commit is contained in:
Jenkins 2016-08-04 13:07:59 +00:00 committed by Gerrit Code Review
commit 3a7e91df4a
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 = []