diff --git a/tools/ldgen/fragments.py b/tools/ldgen/fragments.py index 0339f5849e..227abf464f 100644 --- a/tools/ldgen/fragments.py +++ b/tools/ldgen/fragments.py @@ -107,7 +107,7 @@ class FragmentFile(): try: parse_ctx.fragment.set_key_value(parse_ctx.key, stmts) except Exception as e: - raise ParseFatalException(pstr, loc, "unable to add key '%s'; %s" % (parse_ctx.key, e.message)) + raise ParseFatalException(pstr, loc, "unable to add key '%s'; %s" % (parse_ctx.key, str(e))) return None key = Word(alphanums + "_") + Suppress(":") @@ -139,7 +139,7 @@ class FragmentFile(): except KeyError: raise ParseFatalException(pstr, loc, "key '%s' is not supported by fragment" % key) except Exception as e: - raise ParseFatalException(pstr, loc, "unable to parse key '%s'; %s" % (key, e.message)) + raise ParseFatalException(pstr, loc, "unable to parse key '%s'; %s" % (key, str(e))) key_stmt << (conditional | Group(key_grammar).setResultsName("value")) diff --git a/tools/ldgen/generation.py b/tools/ldgen/generation.py index 5e08e177d3..60285849aa 100644 --- a/tools/ldgen/generation.py +++ b/tools/ldgen/generation.py @@ -591,7 +591,7 @@ class SectionsInfo(dict): try: results = parser.parseString(first_line) except ParseException as p: - raise ParseException("Parsing sections info for library " + sections_info_dump.name + " failed. " + p.message) + raise ParseException("Parsing sections info for library " + sections_info_dump.name + " failed. " + p.msg) archive = os.path.basename(results.archive_path) self.sections[archive] = SectionsInfo.__info(sections_info_dump.name, sections_info_dump.read()) @@ -618,7 +618,7 @@ class SectionsInfo(dict): try: results = parser.parseString(sections_info_text) except ParseException as p: - raise ParseException("Unable to parse section info file " + info.filename + ". " + p.message) + raise ParseException("Unable to parse section info file " + info.filename + ". " + p.msg) return results