Commit f342fda7 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix SQL typo (parenthesis put before a single quote intead of before a double quote).


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@21995 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 834bd7b7
......@@ -122,9 +122,9 @@ class DomainTool(BaseTool):
"OR ((%(base_name)s_range_min <= '%(value)s') AND " \
"(%(base_name)s_range_max is NULL)) " \
"OR ((%(base_name)s_range_min is NULL) AND " \
"%(base_name)s_range_max > '%(value)s)' " \
"%(base_name)s_range_max > '%(value)s') " \
"OR ((%(base_name)s_range_min <= '%(value)s') AND " \
"%(base_name)s_range_max > '%(value)s)' " \
"%(base_name)s_range_max > '%(value)s') " \
% format_dict
expression = '( %s )' % expression
expression_list.append(expression)
......
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