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: except StdoutMaxBytesExceeded as e:
return _( return _(
"Standard Output too large to display ({text_size} bytes), " "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 text_size=e.total, supported_size=e.supported
) )

View File

@@ -4687,7 +4687,7 @@ class UnifiedJobStdout(RetrieveAPIView):
except StdoutMaxBytesExceeded as e: except StdoutMaxBytesExceeded as e:
response_message = _( response_message = _(
"Standard Output too large to display ({text_size} bytes), " "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 text_size=e.total, supported_size=e.supported
) )
if request.accepted_renderer.format == 'json': if request.accepted_renderer.format == 'json':