mirror of
https://github.com/platformio/platformio-core.git
synced 2025-09-29 07:10:55 +02:00
fix typo in a method name (#4672)
This commit is contained in:
@@ -86,7 +86,7 @@ class ProjectConfigBase:
|
|||||||
if path and os.path.isfile(path):
|
if path and os.path.isfile(path):
|
||||||
self.read(path, parse_extra)
|
self.read(path, parse_extra)
|
||||||
|
|
||||||
self._maintain_renaimed_options()
|
self._maintain_renamed_options()
|
||||||
|
|
||||||
def __getattr__(self, name):
|
def __getattr__(self, name):
|
||||||
return getattr(self._parser, name)
|
return getattr(self._parser, name)
|
||||||
@@ -110,7 +110,7 @@ class ProjectConfigBase:
|
|||||||
for item in glob.glob(pattern, recursive=True):
|
for item in glob.glob(pattern, recursive=True):
|
||||||
self.read(item)
|
self.read(item)
|
||||||
|
|
||||||
def _maintain_renaimed_options(self):
|
def _maintain_renamed_options(self):
|
||||||
renamed_options = {}
|
renamed_options = {}
|
||||||
for option in ProjectOptions.values():
|
for option in ProjectOptions.values():
|
||||||
if option.oldnames:
|
if option.oldnames:
|
||||||
|
Reference in New Issue
Block a user