[IMP] unable to parse PDF reports

bzr revid: fp@tinyerp.com-20110104081508-rg2pq652dsggh3m1
This commit is contained in:
Fabien Pinckaers 2011-01-04 09:15:08 +01:00
parent afa53f95a2
commit 69b2f58dac
1 changed files with 3 additions and 3 deletions

View File

@ -79,8 +79,8 @@ def try_report(cr, uid, rname, ids, data=None, context=None, our_module=None):
res_text = tools.ustr(fp.read())
os.unlink(rfname)
except Exception:
log.warning("Cannot extract report's text:", exc_info=True)
log.debug("Unable to parse PDF report: install pdftotext to perform automated tests.")
if res_text is not False:
for line in res_text.split('\n'):
if ('[[' in line) or ('[ [' in line):
@ -306,4 +306,4 @@ def try_report_action(cr, uid, action_id, active_model=None, active_ids=None,
return True
#eof
#eof