Commit d8b88fd0 authored by Alexandre Boeglin's avatar Alexandre Boeglin

Fixed bug in searchPredicateList.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3121 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b5cb7eb1
......@@ -86,7 +86,7 @@ class DomainTool(BaseTool):
if column in checked_column_list:
continue
range_property = 0
if column.endswith('_min') or column.startswith('_max'):
if column.endswith('_min') or column.endswith('_max'):
range_property = 1
property = column[-len('_min')]
if '%s_min' % column in column_list:
......
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