[Zope-Checkins]
SVN: Zope/branches/Zope-2_8-branch/lib/python/OFS/Application.py
Fix : transaction().abort() -> transaction.abort()
Julien Anguenot
ja at nuxeo.com
Wed Feb 8 10:45:05 EST 2006
Log message for revision 41579:
Fix : transaction().abort() -> transaction.abort()
Changed:
U Zope/branches/Zope-2_8-branch/lib/python/OFS/Application.py
-=-
Modified: Zope/branches/Zope-2_8-branch/lib/python/OFS/Application.py
===================================================================
--- Zope/branches/Zope-2_8-branch/lib/python/OFS/Application.py 2006-02-08 15:43:05 UTC (rev 41578)
+++ Zope/branches/Zope-2_8-branch/lib/python/OFS/Application.py 2006-02-08 15:45:05 UTC (rev 41579)
@@ -841,7 +841,7 @@
list(Folder.Folder.__ac_permissions__)+new_permissions)
if not doInstall():
- transaction().abort()
+ transaction.abort()
else:
transaction.get().note('Installed product '+product_name)
transaction.commit()
More information about the Zope-Checkins
mailing list