[Libreoffice-commits] dev-tools.git: esc-reporting/esc-analyze.py
jan Iversen
jani at libreoffice.org
Thu May 18 14:34:51 UTC 2017
esc-reporting/esc-analyze.py | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
New commits:
commit 718cf68abe7cc59e5dc8d001412a2121a95f1635
Author: jan Iversen <jani at libreoffice.org>
Date: Thu May 18 16:34:28 2017 +0200
esc-report, reinstate try/Except for run_final
diff --git a/esc-reporting/esc-analyze.py b/esc-reporting/esc-analyze.py
index 6923552..de7ec26 100755
--- a/esc-reporting/esc-analyze.py
+++ b/esc-reporting/esc-analyze.py
@@ -931,11 +931,11 @@ def runAnalyze():
except Exception as e:
print('ERROR: analyze_reports failed with ' + str(e))
pass
-# try:
- analyze_final()
-# except Exception as e:
-# print('ERROR: analyze_final failed with ' + str(e))
-# pass
+ try:
+ analyze_final()
+ except Exception as e:
+ print('ERROR: analyze_final failed with ' + str(e))
+ pass
def runUpgrade(args):
More information about the Libreoffice-commits
mailing list