Merge branch 'bugfix/parseexception_msg' into 'master'

ldgen: change exception message access

See merge request espressif/esp-idf!9121
pull/5628/head
Angus Gratton 2020-06-16 12:16:26 +08:00
commit 1a9509a47f
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -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"))

Wyświetl plik

@ -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