[Zodb-checkins] SVN: ZODB/branches/3.8/ Fixed bug #189542 by prepending the module to an undefined name.

Andreas Zeidler az at zitc.de
Tue Sep 23 08:35:17 EDT 2008


Log message for revision 91392:
  Fixed bug #189542 by prepending the module to an undefined name.
  

Changed:
  U   ZODB/branches/3.8/NEWS.txt
  U   ZODB/branches/3.8/src/ZEO/ClientStorage.py

-=-
Modified: ZODB/branches/3.8/NEWS.txt
===================================================================
--- ZODB/branches/3.8/NEWS.txt	2008-09-23 12:33:13 UTC (rev 91391)
+++ ZODB/branches/3.8/NEWS.txt	2008-09-23 12:35:16 UTC (rev 91392)
@@ -4,6 +4,8 @@
 
 Bugs Fixed:
 
+- (beta 9) Fixed bug #189542 by prepending the module for a missing name.
+
 - (beta 8) If there is a failure while FileStorage is finalizing a transaction,
   the file storage is closed because it's internal meta data may be
   invalid.

Modified: ZODB/branches/3.8/src/ZEO/ClientStorage.py
===================================================================
--- ZODB/branches/3.8/src/ZEO/ClientStorage.py	2008-09-23 12:33:13 UTC (rev 91391)
+++ ZODB/branches/3.8/src/ZEO/ClientStorage.py	2008-09-23 12:35:16 UTC (rev 91392)
@@ -985,7 +985,7 @@
             if self._have_blob(blob_filename, oid, serial):
                 return blob_filename
 
-            raise POSKeyError("No blob file", oid, serial)
+            raise POSException.POSKeyError("No blob file", oid, serial)
 
         finally:
             lock.close()



More information about the Zodb-checkins mailing list