[FIX] removed print statement that crashes on runbot ascii

bzr revid: fp@openerp.com-20130731191544-nbyrlxz2xzycammn
This commit is contained in:
Fabien Pinckaers 2013-07-31 21:15:44 +02:00
parent 390c968e17
commit 402907df8d
1 changed files with 0 additions and 1 deletions

View File

@ -173,7 +173,6 @@ class view(osv.osv):
origin = model_obj.read(cr, uid, [res_id], [field], context=context)[0][field]
origin_tree = etree.fromstring(origin.encode('utf-8'))
zone = origin_tree.xpath(xpath)[0]
print "zone", zone, "value", value
zone.getparent().replace(zone, lxml.html.fromstring(value))
value = etree.tostring(origin_tree, encoding='utf-8')