[Checkins] SVN: Sandbox/wichert/ZODB38-jarn/ Merge r91344:HEAD from 3.8 branch

Wichert Akkerman wichert at wiggy.net
Tue Sep 23 08:53:59 EDT 2008


Log message for revision 91393:
  Merge r91344:HEAD from 3.8 branch

Changed:
  U   Sandbox/wichert/ZODB38-jarn/NEWS.txt
  U   Sandbox/wichert/ZODB38-jarn/src/ZEO/ClientStorage.py

-=-
Modified: Sandbox/wichert/ZODB38-jarn/NEWS.txt
===================================================================
--- Sandbox/wichert/ZODB38-jarn/NEWS.txt	2008-09-23 12:35:16 UTC (rev 91392)
+++ Sandbox/wichert/ZODB38-jarn/NEWS.txt	2008-09-23 12:53:58 UTC (rev 91393)
@@ -11,6 +11,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: Sandbox/wichert/ZODB38-jarn/src/ZEO/ClientStorage.py
===================================================================
--- Sandbox/wichert/ZODB38-jarn/src/ZEO/ClientStorage.py	2008-09-23 12:35:16 UTC (rev 91392)
+++ Sandbox/wichert/ZODB38-jarn/src/ZEO/ClientStorage.py	2008-09-23 12:53:58 UTC (rev 91393)
@@ -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 Checkins mailing list