[Zope-DB] CVS: Products/DCOracle2/DCOracleStorage - Full.py:1.2

Matthew T. Kromer matt@zope.com
Wed, 10 Oct 2001 14:04:56 -0400


Update of /cvs-repository/Products/DCOracle2/DCOracleStorage
In directory cvs.zope.org:/tmp/cvs-serv25976

Modified Files:
	Full.py 
Log Message:
Rob Foster reported a bug -- undoLog just returns its cursor, and doesn't need
one passed in (which was getting goofed).  This is a correction to a conversion
artifact from DCOracle to DCOracle2.


=== Products/DCOracle2/DCOracleStorage/Full.py 1.1 => 1.2 ===
         self._lock_acquire()
         try:
-            x, c = self._call('undoLog', (), 'undo')
+            c = self._call('undoLog', ())
             
             i=0; r=[]; a=r.append
             while i < last: