mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
tiny-test-fw: update sdkconfig python dictionary to contain values without trailing newlines
This commit is contained in:
parent
1465f53f49
commit
f05228be36
@ -81,7 +81,7 @@ class IDFApp(App.BaseApp):
|
|||||||
for line in f:
|
for line in f:
|
||||||
configs = line.split('=')
|
configs = line.split('=')
|
||||||
if len(configs) == 2:
|
if len(configs) == 2:
|
||||||
d[configs[0]] = configs[1]
|
d[configs[0]] = configs[1].rstrip()
|
||||||
return d
|
return d
|
||||||
|
|
||||||
def get_binary_path(self, app_path):
|
def get_binary_path(self, app_path):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user