Fixed trivial issue in exception message
Change-Id: I2837875f82a87394be502016a21642b1dffde1f0
This commit is contained in:
parent
001598237c
commit
b2aabd221a
@ -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 = []
|
||||
|
@ -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 = []
|
||||
|
Loading…
Reference in New Issue
Block a user