From: Mike Bayer Date: Mon, 23 Aug 2021 15:40:23 +0000 (-0400) Subject: fix typo X-Git-Tag: rel_1_4_24~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5810f541ebc487f7731383dd299dcbc76d0b7d7b;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typo Change-Id: I670d779a2103b3060c7eacb79cb4a803e3ecaadd --- diff --git a/doc/build/orm/session_transaction.rst b/doc/build/orm/session_transaction.rst index a71b4e6ed7..bc901762b6 100644 --- a/doc/build/orm/session_transaction.rst +++ b/doc/build/orm/session_transaction.rst @@ -597,7 +597,7 @@ We can for example create our :class:`_orm.Session` from a default plain_engine = create_engine("postgresql://scott:tiger@localhost/test") - autocommit_engine = eng.execution_options(isolation_level="AUTOCOMMIT") + autocommit_engine = plain_engine.execution_options(isolation_level="AUTOCOMMIT") # will normally use plain_engine Session = sessionmaker(plain_engine)