diff options
author | Chris Withers <chris@simplistix.co.uk> | 2010-04-28 19:22:55 +0100 |
---|---|---|
committer | Chris Withers <chris@simplistix.co.uk> | 2010-04-28 19:22:55 +0100 |
commit | 31d168d2c3f322d013f7944701072ce4d5d420af (patch) | |
tree | ba32f8c111cd82de4fe445229027525d7916f5f1 /lib/sqlalchemy/orm/session.py | |
parent | 7686386c0025c4364a7e34ef4b1fc71e6fc00374 (diff) | |
download | sqlalchemy-31d168d2c3f322d013f7944701072ce4d5d420af.tar.gz |
fix sphinx reference
Diffstat (limited to 'lib/sqlalchemy/orm/session.py')
-rw-r--r-- | lib/sqlalchemy/orm/session.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/orm/session.py b/lib/sqlalchemy/orm/session.py index 7641905f0..5b33ca1a2 100644 --- a/lib/sqlalchemy/orm/session.py +++ b/lib/sqlalchemy/orm/session.py @@ -147,7 +147,7 @@ def sessionmaker(bind=None, class_=None, autoflush=True, autocommit=False, twophase When ``True``, all transactions will be started using - :mod:~sqlalchemy.engine_TwoPhaseTransaction. During a ``commit()``, after + :mod:`~sqlalchemy.engine_TwoPhaseTransaction`. During a ``commit()``, after ``flush()`` has been issued for all attached databases, the ``prepare()`` method on each database's ``TwoPhaseTransaction`` will be called. This allows each database to roll back the entire transaction, |