Commit 388f0fa1 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

UniqueObject and Folder classes are already inherited in BaseTool class.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@35930 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b471e0e5
...@@ -55,7 +55,7 @@ _MARKER = [] ...@@ -55,7 +55,7 @@ _MARKER = []
class SelectionError( Exception ): class SelectionError( Exception ):
pass pass
class SelectionTool( BaseTool, UniqueObject, SimpleItem ): class SelectionTool( BaseTool, SimpleItem ):
""" """
The SelectionTool object is the place holder for all The SelectionTool object is the place holder for all
methods and algorithms related to persistent selections methods and algorithms related to persistent selections
......
...@@ -187,7 +187,7 @@ def colorize(text): ...@@ -187,7 +187,7 @@ def colorize(text):
html = html.replace(os.linesep, os.linesep+"<br/>") html = html.replace(os.linesep, os.linesep+"<br/>")
return html return html
class SubversionTool(BaseTool, UniqueObject, Folder): class SubversionTool(BaseTool):
"""The SubversionTool provides a Subversion interface to ERP5. """The SubversionTool provides a Subversion interface to ERP5.
""" """
id = 'portal_subversion' id = 'portal_subversion'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment