From: Vraj Mohan Date: Thu, 14 Nov 2013 19:27:50 +0000 (-0500) Subject: Fix method name X-Git-Tag: rel_0_9_0~121^2^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=218a3162f98040df84844dcebb771b465bec5bd0;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix method name --- diff --git a/lib/sqlalchemy/events.py b/lib/sqlalchemy/events.py index b58b53916b..c0118dd9f9 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