Skip to content

Commit

Permalink
Made CMFBTreeFolder compatible with CMF 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tiran committed Jun 20, 2005
1 parent 9445e83 commit 1faaf40
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.0.2

- Made CMFBTreeFolder compatible with CMF 1.5+

Version 1.0.1

- ConflictError was swallowed by _delObject. This could break code
Expand Down
5 changes: 4 additions & 1 deletion CMFBTreeFolder.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@

import Globals
from BTreeFolder2 import BTreeFolder2Base
from Products.CMFCore.PortalFolder import PortalFolder
try:
from Products.CMFCore.PortalFolder import PortalFolderBase as PortalFolder
except ImportError:
from Products.CMFCore.PortalFolder import PortalFolder
import Products.CMFCore.PortalFolder


Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
BTreeFolder2-1.0.1
BTreeFolder2-1.0.2

0 comments on commit 1faaf40

Please sign in to comment.