forked from platformio/platformio-core
Enhance the parsing of the platformio.ini to provide comprehensive diagnostic information
This commit is contained in:
@ -18,6 +18,8 @@ PlatformIO Core 6
|
|||||||
6.1.8 (2023-??-??)
|
6.1.8 (2023-??-??)
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
* Enhanced the parsing of the |PIOCONF| to provide comprehensive diagnostic information
|
||||||
|
|
||||||
6.1.7 (2023-05-08)
|
6.1.7 (2023-05-08)
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
@ -98,7 +98,7 @@ class ProjectConfigBase:
|
|||||||
try:
|
try:
|
||||||
self._parser.read(path, "utf-8")
|
self._parser.read(path, "utf-8")
|
||||||
except configparser.Error as exc:
|
except configparser.Error as exc:
|
||||||
raise exception.InvalidProjectConfError(path, str(exc))
|
raise exception.InvalidProjectConfError(path, str(exc)) from exc
|
||||||
|
|
||||||
if not parse_extra:
|
if not parse_extra:
|
||||||
return
|
return
|
||||||
|
Reference in New Issue
Block a user