[Checkins] SVN: ZODB/trunk/src/ZODB/blob.py Fix corner case	NameError.
    Chris McDonough 
    chrism at plope.com
       
    Sat Nov  1 14:49:29 EDT 2008
    
    
  
Log message for revision 92744:
  Fix corner case NameError.
  
Changed:
  U   ZODB/trunk/src/ZODB/blob.py
-=-
Modified: ZODB/trunk/src/ZODB/blob.py
===================================================================
--- ZODB/trunk/src/ZODB/blob.py	2008-11-01 18:23:23 UTC (rev 92743)
+++ ZODB/trunk/src/ZODB/blob.py	2008-11-01 18:49:28 UTC (rev 92744)
@@ -364,7 +364,7 @@
             except OSError:
                 # We might have lost a race.  If so, the directory
                 # must exist now
-                assert os.path.exists(targetpath)
+                assert os.path.exists(path)
         return path
 
     def getOIDForPath(self, path):
    
    
More information about the Checkins
mailing list