removed print statement

bzr revid: fp@tinyerp.com-20100612165504-ourp8hw9khysr4ic
This commit is contained in:
Fabien Pinckaers 2010-06-12 18:55:04 +02:00
parent fd1c8a5b83
commit 791add9189
1 changed files with 0 additions and 1 deletions

View File

@ -131,7 +131,6 @@ class osv_pool(netsvc.Service):
if method.startswith('_'):
raise except_osv('Access Denied', 'Private methods (such as %s) cannot be called remotely.' % (method,))
res = pool.execute_cr(cr, uid, obj, method, *args, **kw)
print 'Got RES', res
if res is None:
self.logger.warning('The method %s of the object %s can not return `None` !', method, obj)
cr.commit()