Commit b7555477 authored by Andreas Jung's avatar Andreas Jung

last change broke unittests

parent ef2c8343
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""Simple column indices""" """Simple column indices"""
__version__='$Revision: 1.18 $'[11:-2] __version__='$Revision: 1.19 $'[11:-2]
from Globals import Persistent from Globals import Persistent
from Acquisition import Implicit from Acquisition import Implicit
...@@ -88,8 +88,10 @@ class UnIndex(Persistent, Implicit, SimpleItem): ...@@ -88,8 +88,10 @@ class UnIndex(Persistent, Implicit, SimpleItem):
try: try:
self.indexed_attrs = extra.indexed_attrs.split(',') self.indexed_attrs = extra.indexed_attrs.split(',')
self.indexed_attrs = [ attr.strip() for attr in self.indexed_attrs if attr ] self.indexed_attrs = [ attr.strip() for attr in self.indexed_attrs if attr ]
except: pass if len(self.indexed_attrs) == 0: self.indexed_attrs = [ self.id ]
if len(self.indexed_attrs) == 0: self.indexed_attrs = [ self.id ] except:
self.indexed_attrs = [ self.id ]
self.__len__=BTrees.Length.Length() # see __len__ method docstring self.__len__=BTrees.Length.Length() # see __len__ method docstring
self.clear() self.clear()
......
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