Comment 1 for bug 240381

Revision history for this message
Christophe Combelles (ccomb) wrote :

A first fix is :

In ZODB/blob.py:85, replace:
        for ref in self.readers+self.writers:
with
        for ref in (self.readers or []) + (self.writers or []):

But that's not enough, the copied file is empty.