mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-01 19:54:32 +02:00
tiny-test-fw: update sdkconfig python dictionary to contain values without trailing newlines
This commit is contained in:
@@ -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):
|
||||||
|
Reference in New Issue
Block a user