]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix method name
authorVraj Mohan <r.vrajmohan@gmail.com>
Thu, 14 Nov 2013 19:27:50 +0000 (14:27 -0500)
committerVraj Mohan <r.vrajmohan@gmail.com>
Thu, 14 Nov 2013 19:31:38 +0000 (14:31 -0500)
lib/sqlalchemy/events.py

index b58b53916b6a3fbb8fb404265715fe163c0f3c7a..c0118dd9f925c238fbf5c7cc89176b4704b4184b 100644 (file)
@@ -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