Removed print statement

bzr revid: fp@tinyerp.com-20080819214849-ltxf8l0n12ku6its
This commit is contained in:
Fabien Pinckaers 2008-08-19 23:48:49 +02:00
parent 62ae90231b
commit df8de89042
1 changed files with 0 additions and 3 deletions

View File

@ -2336,7 +2336,6 @@ class orm(orm_template):
else:
qu1, qu2, tables = [], [], ['"%s"' % self._table]
print 'WC RES', qu1, qu2, tables
return (qu1, qu2, tables)
def _check_qorder(self, word):
@ -2346,12 +2345,10 @@ class orm(orm_template):
def search(self, cr, user, args, offset=0, limit=None, order=None,
context=None, count=False):
print 'SEARCH', self._name, args
if not context:
context = {}
# compute the where, order by, limit and offset clauses
(qu1, qu2, tables) = self._where_calc(cr, user, args, context=context)
print qu1, qu2, tables
if len(qu1):
qu1 = ' where '+string.join(qu1, ' and ')