From f05228be365ef7618e9e577ad6434b9cbd94fd07 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Tue, 26 Feb 2019 16:27:39 +0100 Subject: [PATCH] tiny-test-fw: update sdkconfig python dictionary to contain values without trailing newlines --- tools/tiny-test-fw/IDF/IDFApp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tiny-test-fw/IDF/IDFApp.py b/tools/tiny-test-fw/IDF/IDFApp.py index 45386f0eb1..7033301ff5 100644 --- a/tools/tiny-test-fw/IDF/IDFApp.py +++ b/tools/tiny-test-fw/IDF/IDFApp.py @@ -81,7 +81,7 @@ class IDFApp(App.BaseApp): for line in f: configs = line.split('=') if len(configs) == 2: - d[configs[0]] = configs[1] + d[configs[0]] = configs[1].rstrip() return d def get_binary_path(self, app_path):