Fix missing space in decision validation error
This commit is contained in:
parent
0749b30fb4
commit
507351612e
1 changed files with 2 additions and 2 deletions
|
|
@ -112,9 +112,9 @@ class SWFDecisionValidationException(SWFClientError):
|
|||
# prefix
|
||||
count = len(problems)
|
||||
if count < 2:
|
||||
prefix = "{} validation error detected:"
|
||||
prefix = "{} validation error detected: "
|
||||
else:
|
||||
prefix = "{} validation errors detected:"
|
||||
prefix = "{} validation errors detected: "
|
||||
super(SWFDecisionValidationException, self).__init__(
|
||||
prefix.format(count) + "; ".join(messages),
|
||||
"com.amazon.coral.validate#ValidationException"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue