[Zodb-checkins] SVN: ZODB/trunk/src/ZODB/MappingStorage.py Fixed a name error.

Jim Fulton jim at zope.com
Thu Sep 9 14:48:36 EDT 2010


Log message for revision 116278:
  Fixed a name error.
  

Changed:
  U   ZODB/trunk/src/ZODB/MappingStorage.py

-=-
Modified: ZODB/trunk/src/ZODB/MappingStorage.py
===================================================================
--- ZODB/trunk/src/ZODB/MappingStorage.py	2010-09-09 18:38:55 UTC (rev 116277)
+++ ZODB/trunk/src/ZODB/MappingStorage.py	2010-09-09 18:48:36 UTC (rev 116278)
@@ -325,7 +325,7 @@
     # ZODB.interfaces.IStorage
     def tpc_vote(self, transaction):
         if transaction is not self._transaction:
-            raise POSException.StorageTransactionError(
+            raise ZODB.POSException.StorageTransactionError(
                 "tpc_vote called with wrong transaction")
 
 class TransactionRecord:



More information about the Zodb-checkins mailing list