From fbec8bd73ab07caae6c9916ae8f103257263cd24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Manuel=20Barroso=20Galindo?= Date: Thu, 28 Jul 2022 01:03:44 +0200 Subject: [PATCH] Better error output --- .github/calculate_db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/calculate_db.py b/.github/calculate_db.py index 39c1a5329..cd23a9242 100755 --- a/.github/calculate_db.py +++ b/.github/calculate_db.py @@ -862,7 +862,7 @@ def read_mra_fields(mra_path): if 'zip' in attributes and attributes['zip'] is not None: zips |= {z.strip().lower() for z in attributes['zip'].strip().lower().split('|')} except xml.etree.ElementTree.ParseError as e: - print('ERROR: Defect XML for mra file: ' + mra_path) + print('ERROR: Defect XML for mra file: ' + str(mra_path)) raise e return rbf, list(zips)