[Neo-report] r1954 gregory - /trunk/neo/storage/transactions.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Mar 23 11:06:06 CET 2010


Author: gregory
Date: Tue Mar 23 11:06:05 2010
New Revision: 1954

Log:
Fix super call (not a new-style class)

Modified:
    trunk/neo/storage/transactions.py

Modified: trunk/neo/storage/transactions.py
==============================================================================
--- trunk/neo/storage/transactions.py [iso-8859-1] (original)
+++ trunk/neo/storage/transactions.py [iso-8859-1] Tue Mar 23 11:06:05 2010
@@ -26,7 +26,7 @@
     """
 
     def __init__(self, tid):
-        super(ConflictError, self).__init__()
+        Exception.__init__(self)
         self._tid = tid
 
     def getTID(self):





More information about the Neo-report mailing list