[Checkins] SVN: z3c.sqlalchemy/trunk/src/ fixed issue where session's transaction.nested was being called as

Rocky Burt rocky at serverzen.com
Mon Feb 18 08:11:06 EST 2008


Log message for revision 84020:
  fixed issue where session's transaction.nested was being called as
  a callabe (it should be straight attribute access)
  

Changed:
  _U  z3c.sqlalchemy/trunk/src/
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/CHANGES.txt
  U   z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py

-=-

Property changes on: z3c.sqlalchemy/trunk/src
___________________________________________________________________
Name: svn:ignore
   + z3c.sqlalchemy.egg-info


Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/CHANGES.txt
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/CHANGES.txt	2008-02-18 12:41:04 UTC (rev 84019)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/CHANGES.txt	2008-02-18 13:11:04 UTC (rev 84020)
@@ -1,3 +1,9 @@
+Unreleased
+----------
+
+  - fixed issue where session's transaction.nested was being called as
+    a callabe (it should be straight attribute access) [Rocky]
+
 1.1.2 (16.02.2008)
 -------------------
 

Modified: z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py
===================================================================
--- z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py	2008-02-18 12:41:04 UTC (rev 84019)
+++ z3c.sqlalchemy/trunk/src/z3c/sqlalchemy/base.py	2008-02-18 13:11:04 UTC (rev 84020)
@@ -202,7 +202,7 @@
     def tpc_finish(self, trans):
 
         if self.transaction is not None:
-            while self.session.transaction.nested():
+            while self.session.transaction.nested:
                 self.session.commit()
 
         self.session.clear()



More information about the Checkins mailing list