You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In line 330 of DemoStorage.py (see below) we are not returning after we calling self.changes.storeBlob so the previous attribute error is always raised.
Thanks a lot,
Carlos
if self._blobify():
self.changes.storeBlob(
oid, oldserial, data, blobfilename, '', transaction)
raise
The text was updated successfully, but these errors were encountered:
You're right. I removed the returns so that the method always returns None, but I forgot to add a return after the second call to storeBlob (or maybe a else: raise is better).
Hi,
In line 330 of DemoStorage.py (see below) we are not returning after we calling self.changes.storeBlob so the previous attribute error is always raised.
Thanks a lot,
Carlos
The text was updated successfully, but these errors were encountered: