[Zodb-checkins] SVN: ZODB/trunk/src/ZODB/interfaces.py Fixed a typo that caused IBlobStorageRestoreable to be missspecified.
Jim Fulton
jim at zope.com
Tue Oct 21 13:07:59 EDT 2008
Log message for revision 92435:
Fixed a typo that caused IBlobStorageRestoreable to be missspecified.
Changed:
U ZODB/trunk/src/ZODB/interfaces.py
-=-
Modified: ZODB/trunk/src/ZODB/interfaces.py
===================================================================
--- ZODB/trunk/src/ZODB/interfaces.py 2008-10-21 17:07:55 UTC (rev 92434)
+++ ZODB/trunk/src/ZODB/interfaces.py 2008-10-21 17:07:58 UTC (rev 92435)
@@ -1011,7 +1011,7 @@
class IBlobStorageRestoreable(IBlobStorage, IStorageRestoreable):
- def storeBlob(oid, serial, data, blobfilename, prev_txn, transaction):
+ def restoreBlob(oid, serial, data, blobfilename, prev_txn, transaction):
"""Write blob data already committed in a separate database
See the restore and storeBlob methods.
More information about the Zodb-checkins
mailing list