]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix markdown bug
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 4 Mar 2008 00:40:40 +0000 (00:40 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 4 Mar 2008 00:40:40 +0000 (00:40 +0000)
doc/build/content/session.txt

index 675fff470cd020717b363b9aec0be1eda02bef49..411f687e92b19708c5bca99e9394bcb8b5f7f16a 100644 (file)
@@ -466,7 +466,7 @@ Things to note above:
 
   * When using a transactional session, either a `rollback()` or a `close()` call **is required** when an error is raised by `flush()` or `commit()`.  The `flush()` error condition will issue a ROLLBACK to the database automatically, but the state of the `Session` itself remains in an "undefined" state until the user decides whether to rollback or close.
   * The `commit()` call unconditionally issues a `flush()`.  Particularly when using `transactional=True` in conjunction with `autoflush=True`, explicit `flush()` calls are usually not needed.
-  
+
 Alternatively, a transaction can be begun explicitly using `begin()`:
 
     {python}