The HEAD seems to be relying on features of ZODB that I can't get on
my FreeBSD system. The following patch makes it stop complaining, but
I freely admit I have no idea whether it's the right patch :).
Anyway, I hope it's helpful.
--- ../../../../../tmp/emacs~/!home!dave!src!spambayes!spambayes!storage.py.~1.60.~ Sat Apr 22 04:41:54 2006
+++ storage.py Wed Nov 1 06:52:44 2006
@@ -758,7 +758,10 @@
commit = ZODB.Transaction.get_transaction().commit
abort = ZODB.Transaction.get_transaction().abort
from ZODB.POSException import ConflictError
- from ZODB.POSException import TransactionFailedError
+ try:
+ from ZODB.POSException import TransactionFailedError
+ except:
+ from ZODB.POSException import TransactionError as TransactionFailedError
assert self.closed == False, "Can't store a closed database"
--
Dave Abrahams
Boost Consulting
www.boost-consulting.com
_______________________________________________
spambayes-dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/spambayes-dev