From beebc76bbe8e3fa692612790917eeeb6edcd0f68 Mon Sep 17 00:00:00 2001
From: Vincent Pelletier <vincent@nexedi.com>
Date: Thu, 26 Jul 2007 18:35:39 +0000
Subject: [PATCH] Fix typo.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@15335 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ZSQLCatalog/SQLCatalog.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/product/ZSQLCatalog/SQLCatalog.py b/product/ZSQLCatalog/SQLCatalog.py
index 52611b54cf..c795cde9eb 100644
--- a/product/ZSQLCatalog/SQLCatalog.py
+++ b/product/ZSQLCatalog/SQLCatalog.py
@@ -404,7 +404,7 @@ class Query(QueryMixin):
         escaped_value_string = ', '.join(escaped_value_list)
         where_expression.append("%s IN (%s)" % (key, escaped_value_string))
       else:
-        where_expression.('0') # "foo IN ()" is invalid SQL syntax, so use a "false" value.
+        where_expression.append('0') # "foo IN ()" is invalid SQL syntax, so use a "false" value.
     else:
       where_expression.append("%s = %s" % 
            (self._quoteSQLKey(key), self._quoteSQLString(value)))
-- 
2.30.9