1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

Add some periods.

This commit is contained in:
Bill Nottingham 2018-03-09 17:23:52 -05:00
parent dcab97f94f
commit fb05eecee0
2 changed files with 2 additions and 2 deletions

View File

@ -3376,7 +3376,7 @@ class SystemJobSerializer(UnifiedJobSerializer):
except StdoutMaxBytesExceeded as e:
return _(
"Standard Output too large to display ({text_size} bytes), "
"only download supported for sizes over {supported_size} bytes").format(
"only download supported for sizes over {supported_size} bytes.").format(
text_size=e.total, supported_size=e.supported
)

View File

@ -4687,7 +4687,7 @@ class UnifiedJobStdout(RetrieveAPIView):
except StdoutMaxBytesExceeded as e:
response_message = _(
"Standard Output too large to display ({text_size} bytes), "
"only download supported for sizes over {supported_size} bytes").format(
"only download supported for sizes over {supported_size} bytes.").format(
text_size=e.total, supported_size=e.supported
)
if request.accepted_renderer.format == 'json':