summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/events.py
diff options
context:
space:
mode:
authorVraj Mohan <r.vrajmohan@gmail.com>2013-11-14 14:27:50 -0500
committerVraj Mohan <r.vrajmohan@gmail.com>2013-11-14 14:31:38 -0500
commit218a3162f98040df84844dcebb771b465bec5bd0 (patch)
tree934f03ca51e39524344814139a923489f86c4c89 /lib/sqlalchemy/events.py
parent2ebf91b63b736b3bc3ea60530ef09da34c44ca31 (diff)
downloadsqlalchemy-218a3162f98040df84844dcebb771b465bec5bd0.tar.gz
Fix method name
Diffstat (limited to 'lib/sqlalchemy/events.py')
-rw-r--r--lib/sqlalchemy/events.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/events.py b/lib/sqlalchemy/events.py
index b58b53916..c0118dd9f 100644
--- a/lib/sqlalchemy/events.py
+++ b/lib/sqlalchemy/events.py
@@ -307,7 +307,7 @@ class PoolEvents(event.Events):
Processing of all checkout listeners will abort and restart
using the new connection.
- .. seealso:: :meth:`.ConnectionEvents.connect` - a similar event
+ .. seealso:: :meth:`.ConnectionEvents.engine_connect` - a similar event
which occurs upon creation of a new :class:`.Connection`.
"""
@@ -668,7 +668,7 @@ class ConnectionEvents(event.Events):
Note that this method is not called when a new :class:`.Connection`
is produced which is inheriting execution options from its parent
:class:`.Engine`; to intercept this condition, use the
- :meth:`.ConnectionEvents.connect` event.
+ :meth:`.ConnectionEvents.engine_connect` event.
:param conn: The newly copied :class:`.Connection` object