From 69b2f58dac5c4021c83f7afffd5cdef721f5e5ab Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Tue, 4 Jan 2011 09:15:08 +0100 Subject: [PATCH] [IMP] unable to parse PDF reports bzr revid: fp@tinyerp.com-20110104081508-rg2pq652dsggh3m1 --- bin/tools/test_reports.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/tools/test_reports.py b/bin/tools/test_reports.py index 2f27ed9d3df..6e4b08ece2c 100644 --- a/bin/tools/test_reports.py +++ b/bin/tools/test_reports.py @@ -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 \ No newline at end of file +#eof