Fix error message (#10129)
This commit is contained in:
parent
3e74ab5a85
commit
fb3b1fe116
|
|
@ -580,9 +580,17 @@ class BuildOutputCompleteSerializer(serializers.Serializer):
|
|||
and not stock_item.passedAllRequiredTests()
|
||||
):
|
||||
serial = stock_item.serial
|
||||
errors.append(
|
||||
_(f'Build output {serial} has not passed all required tests')
|
||||
)
|
||||
|
||||
if serial:
|
||||
errors.append(
|
||||
_(
|
||||
f'Build output {serial} has not passed all required tests'
|
||||
)
|
||||
)
|
||||
else:
|
||||
errors.append(
|
||||
_('Build output has not passed all required tests')
|
||||
)
|
||||
|
||||
if errors:
|
||||
raise ValidationError(errors)
|
||||
|
|
|
|||
Loading…
Reference in New Issue