[CLEAN] Removed some forgotten print statements.

bzr revid: tde@openerp.com-20121205153535-lfs6yrokyk0wfm0w
This commit is contained in:
Thibault Delavallée 2012-12-05 16:35:35 +01:00
parent 5492626263
commit 02c200844c
1 changed files with 0 additions and 2 deletions

View File

@ -2732,7 +2732,6 @@ class BaseModel(object):
parent_table_name = parent_model._table
quoted_parent_table_name = '"%s"' % parent_table_name
if quoted_parent_table_name not in query.tables:
print '--> _inheratis_join_add adding %s' % (quoted_parent_table_name)
query.tables.append(quoted_parent_table_name)
query.where_clause.append('(%s.%s = %s.id)' % (current_table._table, inherits_field, parent_table_name))
@ -4670,7 +4669,6 @@ class BaseModel(object):
for table in added_tables:
quoted_table_name = '%s' % (table)
if quoted_table_name not in query.tables:
print '--> apply_rule adding %s' % quoted_table_name
query.tables.append(quoted_table_name)
return True
return False