Commit 9800bc12 authored by Ayush Tiwari's avatar Ayush Tiwari

bt5_config: Add getShortRevision function for compatibility

parent 5068ff15
...@@ -226,6 +226,9 @@ class BusinessManager(Folder): ...@@ -226,6 +226,9 @@ class BusinessManager(Folder):
PropertySheet.Version, PropertySheet.Version,
) )
def getShortRevision(self):
return ' '
def getStatus(self): def getStatus(self):
""" """
installed :BI(s) are installed in OFS. installed :BI(s) are installed in OFS.
...@@ -771,6 +774,7 @@ class BusinessItem(XMLObject): ...@@ -771,6 +774,7 @@ class BusinessItem(XMLObject):
path = self.getProperty('item_path') path = self.getProperty('item_path')
path_list = path.split('/') path_list = path.split('/')
container_path = path_list[:-1] container_path = path_list[:-1]
object_id = path_list[-1] object_id = path_list[-1]
try: try:
container = self.unrestrictedResolveValue(portal, container_path) container = self.unrestrictedResolveValue(portal, container_path)
......
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