diff options
author | Jason Kirtland <jek@discorporate.us> | 2007-08-19 18:34:24 +0000 |
---|---|---|
committer | Jason Kirtland <jek@discorporate.us> | 2007-08-19 18:34:24 +0000 |
commit | d1020a8d4ee96a4b00eed9b0eae8adf176bcd149 (patch) | |
tree | a81513b8be80f51494d189907bd1c54c7cce7e61 /lib/sqlalchemy/exceptions.py | |
parent | 551512c561e9cdd2caab22fdd022ebdaede568fe (diff) | |
download | sqlalchemy-d1020a8d4ee96a4b00eed9b0eae8adf176bcd149.tar.gz |
light docstring tweaks to the pool
more pedantic DBAPI -> DB-API changes in docstrings
Diffstat (limited to 'lib/sqlalchemy/exceptions.py')
-rw-r--r-- | lib/sqlalchemy/exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/exceptions.py b/lib/sqlalchemy/exceptions.py index 28e32eeb4..709b0a3da 100644 --- a/lib/sqlalchemy/exceptions.py +++ b/lib/sqlalchemy/exceptions.py @@ -59,7 +59,7 @@ class NoSuchColumnError(KeyError, SQLAlchemyError): class DisconnectionError(SQLAlchemyError): - """Raised within ``Pool`` when a disconnect is detected on a raw DBAPI connection.""" + """Raised within ``Pool`` when a disconnect is detected on a raw DB-API connection.""" class DBAPIError(SQLAlchemyError): |