[Neo-report] r2121 gregory - /trunk/neo/master/transactions.py

nobody at svn.erp5.org nobody at svn.erp5.org
Mon May 24 11:51:13 CEST 2010


Author: gregory
Date: Mon May 24 11:51:12 2010
New Revision: 2121

Log:
Fix transaction's __repr__

Modified:
    trunk/neo/master/transactions.py

Modified: trunk/neo/master/transactions.py
==============================================================================
--- trunk/neo/master/transactions.py [iso-8859-1] (original)
+++ trunk/neo/master/transactions.py [iso-8859-1] Mon May 24 11:51:12 2010
@@ -36,10 +36,12 @@
 
     def __repr__(self):
         return "<%s(node=%r, tid=%r, oids=%r, uuids=%r) at %x>" % (
+                self.__class__.__name__,
                 self._node,
                 dump(self._tid),
                 [dump(x) for x in self._oid_list],
                 [dump(x) for x in self._uuid_dict],
+                id(self),
         )
 
     def getNode(self):





More information about the Neo-report mailing list