Commit ace9a7e9 authored by matt@zope.com's avatar matt@zope.com

Vector of tab removal from 2.4 branch

parent b163021f
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
# #
############################################################################## ##############################################################################
__doc__="""Find support""" __doc__="""Find support"""
__version__='$Revision: 1.26 $'[11:-2] __version__='$Revision: 1.27 $'[11:-2]
import sys, os, string, time, Globals, ExtensionClass import sys, os, string, time, Globals, ExtensionClass
...@@ -153,14 +153,14 @@ class FindSupport(ExtensionClass.Base): ...@@ -153,14 +153,14 @@ class FindSupport(ExtensionClass.Base):
base=obj.aq_base base=obj.aq_base
if hasattr(base, 'objectItems'): if hasattr(base, 'objectItems'):
try: items=obj.objectItems() try: items=obj.objectItems()
except: return result except: return result
else: else:
if getattr(base, 'meta_type', None) == 'Z Class': if getattr(base, 'meta_type', None) == 'Z Class':
try: items=obj.propertysheets.methods.objectItems() try: items=obj.propertysheets.methods.objectItems()
except: return result except: return result
else: else:
return result return result
try: add_result=result.append try: add_result=result.append
except: except:
......
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