mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-22 00:46:33 +03:00
Correct exausted -> exhausted typo
This commit is contained in:
parent
096e0729d5
commit
e9f54a2d6e
|
@ -86,7 +86,7 @@ class AbstractConnectionPool(object):
|
|||
return conn
|
||||
else:
|
||||
if len(self._used) == self.maxconn:
|
||||
raise PoolError("connection pool exausted")
|
||||
raise PoolError("connection pool exhausted")
|
||||
return self._connect(key)
|
||||
|
||||
def _putconn(self, conn, key=None, close=False):
|
||||
|
|
Loading…
Reference in New Issue
Block a user