diff options
author | Diana Clarke <diana.joan.clarke@gmail.com> | 2011-02-28 13:17:46 -0500 |
---|---|---|
committer | Diana Clarke <diana.joan.clarke@gmail.com> | 2011-02-28 13:17:46 -0500 |
commit | 13242f766eb5063a789937e2d56089207426dba0 (patch) | |
tree | 4a599c8e3ce5a887581bbe6b1fb178a696d38827 /lib/sqlalchemy/exc.py | |
parent | 62c545108d97ebe98731204b1de90e9abe2025b7 (diff) | |
download | sqlalchemy-13242f766eb5063a789937e2d56089207426dba0.tar.gz |
corrected a bunch of spelling typos
Diffstat (limited to 'lib/sqlalchemy/exc.py')
-rw-r--r-- | lib/sqlalchemy/exc.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/exc.py b/lib/sqlalchemy/exc.py index dd3f5a9f8..99214dfdd 100644 --- a/lib/sqlalchemy/exc.py +++ b/lib/sqlalchemy/exc.py @@ -39,7 +39,7 @@ class CompileError(SQLAlchemyError): class IdentifierError(SQLAlchemyError): """Raised when a schema name is beyond the max character limit""" -# Moved to orm.exc; compatability definition installed by orm import until 0.6 +# Moved to orm.exc; compatibility definition installed by orm import until 0.6 ConcurrentModificationError = None class DisconnectionError(SQLAlchemyError): @@ -51,7 +51,7 @@ class DisconnectionError(SQLAlchemyError): """ -# Moved to orm.exc; compatability definition installed by orm import until 0.6 +# Moved to orm.exc; compatibility definition installed by orm import until 0.6 FlushError = None class TimeoutError(SQLAlchemyError): @@ -89,11 +89,11 @@ class UnboundExecutionError(InvalidRequestError): """SQL was attempted without a database connection to execute it on.""" -# Moved to orm.exc; compatability definition installed by orm import until 0.6 +# Moved to orm.exc; compatibility definition installed by orm import until 0.6 UnmappedColumnError = None class StatementError(SQLAlchemyError): - """An error occured during execution of a SQL statement. + """An error occurred during execution of a SQL statement. :class:`.StatementError` wraps the exception raised during execution, and features :attr:`.statement` |