kopia lustrzana https://github.com/espressif/esp-idf
Merge branch 'bugfix/parseexception_msg' into 'master'
ldgen: change exception message access See merge request espressif/esp-idf!9121pull/5628/head
commit
1a9509a47f
|
@ -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"))
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue