Replace all occurrences of "can not" with "cannot".

This commit is contained in:
Jonas Thelemann
2017-04-05 13:38:14 +01:00
committed by Dave Page
parent 85db82c7f4
commit 65f21a8cd7
32 changed files with 59 additions and 59 deletions

View File

@@ -211,7 +211,7 @@ class BatchProcess(object):
if self.etime is None:
raise Exception(_('The process has already been started.'))
raise Exception(
_('The process has already finished and can not be restarted.')
_('The process has already finished and cannot be restarted.')
)
executor = file_quote(os.path.join(
@@ -338,7 +338,7 @@ class BatchProcess(object):
self.ecode = p.poll()
# Execution completed immediately.
# Process executor can not update the status, if it was not able to
# Process executor cannot update the status, if it was not able to
# start properly.
if self.ecode is not None and self.ecode != 0:
# There is no way to find out the error message from this process