[Zope3-checkins] CVS: Zope3/src/zope/app/mail - service.py:1.9
Fred L. Drake, Jr.
fred at zope.com
Fri Feb 20 11:57:56 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/mail
In directory cvs.zope.org:/tmp/cvs-serv22507/src/zope/app/mail
Modified Files:
service.py
Log Message:
update to replace ZODB 4 with ZODB 3
=== Zope3/src/zope/app/mail/service.py 1.8 => 1.9 ===
--- Zope3/src/zope/app/mail/service.py:1.8 Mon Sep 22 18:37:23 2003
+++ Zope3/src/zope/app/mail/service.py Fri Feb 20 11:57:26 2004
@@ -32,6 +32,7 @@
from zope.app.mail.maildir import Maildir
from transaction.interfaces import IDataManager
from transaction import get_transaction
+from transaction.util import NoSavepointSupportRollback
__metaclass__ = type
@@ -56,7 +57,7 @@
self.callable(*self.args)
def savepoint(self, transaction):
- pass
+ return NoSavepointSupportRollback(self)
class AbstractMailService:
More information about the Zope3-Checkins
mailing list