Commit 249bbd79 authored by Fred Drake's avatar Fred Drake

fix recurring typo: occured --> occurred

parent 20322290
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
from ZODB.POSException import StorageError from ZODB.POSException import StorageError
class ClientStorageError(StorageError): class ClientStorageError(StorageError):
"""An error occured in the ZEO Client Storage.""" """An error occurred in the ZEO Client Storage."""
class UnrecognizedResult(ClientStorageError): class UnrecognizedResult(ClientStorageError):
"""A server call returned an unrecognized result.""" """A server call returned an unrecognized result."""
......
...@@ -890,7 +890,7 @@ class FileStorage(BaseStorage.BaseStorage, ...@@ -890,7 +890,7 @@ class FileStorage(BaseStorage.BaseStorage,
self._file.write(p64(tl)) self._file.write(p64(tl))
self._file.flush() self._file.flush()
except: except:
# Hm, an error occured writing out the data. Maybe the # Hm, an error occurred writing out the data. Maybe the
# disk is full. We don't want any turd at the end. # disk is full. We don't want any turd at the end.
self._file.truncate(self._pos) self._file.truncate(self._pos)
raise raise
......
...@@ -31,7 +31,7 @@ class POSKeyError(KeyError, POSError): ...@@ -31,7 +31,7 @@ class POSKeyError(KeyError, POSError):
return oid_repr(self.args[0]) return oid_repr(self.args[0])
class TransactionError(POSError): class TransactionError(POSError):
"""An error occured due to normal transaction processing.""" """An error occurred due to normal transaction processing."""
class TransactionFailedError(POSError): class TransactionFailedError(POSError):
"""Cannot perform an operation on a transaction that previously failed. """Cannot perform an operation on a transaction that previously failed.
...@@ -252,7 +252,7 @@ class UndoError(POSError): ...@@ -252,7 +252,7 @@ class UndoError(POSError):
return _fmt_undo(self._oid, self._reason) return _fmt_undo(self._oid, self._reason)
class MultipleUndoErrors(UndoError): class MultipleUndoErrors(UndoError):
"""Several undo errors occured during a single transaction.""" """Several undo errors occurred during a single transaction."""
def __init__(self, errs): def __init__(self, errs):
# provide a reason and oid for clients that only look at that # provide a reason and oid for clients that only look at that
......
...@@ -443,7 +443,7 @@ class Transaction(object): ...@@ -443,7 +443,7 @@ class Transaction(object):
# TODO: do we need to make this warning stronger? # TODO: do we need to make this warning stronger?
# TODO: It would be nice if the system could be configured # TODO: It would be nice if the system could be configured
# to stop committing transactions at this point. # to stop committing transactions at this point.
self.log.critical("A storage error occured during the second " self.log.critical("A storage error occurred during the second "
"phase of the two-phase commit. Resources " "phase of the two-phase commit. Resources "
"may be in an inconsistent state.") "may be in an inconsistent state.")
raise raise
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment