[Zodb-checkins] CVS: Zope/lib/python/BDBStorage - BDBFullStorage.py:1.72 BDBMinimalStorage.py:1.30

Stefane Fermigier sf at fermigier.com
Tue Sep 9 16:43:26 EDT 2003


Update of /cvs-repository/Zope/lib/python/BDBStorage
In directory cvs.zope.org:/tmp/cvs-serv20797/BDBStorage

Modified Files:
	BDBFullStorage.py BDBMinimalStorage.py 
Log Message:
Forgotten namespace.



=== Zope/lib/python/BDBStorage/BDBFullStorage.py 1.71 => 1.72 ===
--- Zope/lib/python/BDBStorage/BDBFullStorage.py:1.71	Fri May 30 13:36:07 2003
+++ Zope/lib/python/BDBStorage/BDBFullStorage.py	Tue Sep  9 15:43:24 2003
@@ -245,7 +245,7 @@
         if version is None:
             self._info.put('version', BDBFULL_SCHEMA_VERSION, txn=txn)
         elif version <> BDBFULL_SCHEMA_VERSION:
-            raise StorageSystemError, 'incompatible storage version'
+            raise POSException.StorageSystemError, 'incompatible storage version'
 
     def _make_autopacker(self, event):
         config = self._config


=== Zope/lib/python/BDBStorage/BDBMinimalStorage.py 1.29 => 1.30 ===
--- Zope/lib/python/BDBStorage/BDBMinimalStorage.py:1.29	Thu Jan 30 18:31:24 2003
+++ Zope/lib/python/BDBStorage/BDBMinimalStorage.py	Tue Sep  9 15:43:25 2003
@@ -133,7 +133,7 @@
         if version is None:
             self._info.put('version', BDBMINIMAL_SCHEMA_VERSION, txn=txn)
         elif version <> BDBMINIMAL_SCHEMA_VERSION:
-            raise StorageSystemError, 'incompatible storage version'
+            raise POSException.StorageSystemError, 'incompatible storage version'
 
     def _make_autopacker(self, event):
         return _Autopack(self, event, self._config.frequency)




More information about the Zodb-checkins mailing list