Commit 3132af40 authored by 's avatar

Fixed a reported bug in FindSupport that could affect non-acquiring objects.

parent 2366948f
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
# #
############################################################################## ##############################################################################
__doc__="""Principia Find support""" __doc__="""Principia Find support"""
__version__='$Revision: 1.8 $'[11:-2] __version__='$Revision: 1.9 $'[11:-2]
import sys, os, string, time, Globals import sys, os, string, time, Globals
...@@ -158,6 +158,7 @@ class FindSupport: ...@@ -158,6 +158,7 @@ class FindSupport:
if hasattr(ob, 'aq_base'): if hasattr(ob, 'aq_base'):
bs=ob.aq_base bs=ob.aq_base
else: bs=ob
if ( if (
(not obj_ids or absattr(bs.id) in obj_ids) (not obj_ids or absattr(bs.id) in obj_ids)
......
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