tfm_ci_pylib/utils: export_config_map: fix indentation to save all configs
export_config_map() is supposed to save the configurations dictionary to
JSON files. Only one configuration is currently saved due to a wrong
indentation of save_json() call.
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Change-Id: Id034014abe97c207afb241277d74c8872ec9f80f
diff --git a/tfm_ci_pylib/utils.py b/tfm_ci_pylib/utils.py
index c2312e5..78c7df4 100755
--- a/tfm_ci_pylib/utils.py
+++ b/tfm_ci_pylib/utils.py
@@ -312,7 +312,7 @@
_cname = _cname.lower()
_fname = os.path.join(_dir, _cname + ".json")
print("Exporting config %s" % _fname)
- save_json(_fname, _cfg)
+ save_json(_fname, _cfg)
def gen_cfg_combinations(name, categories, *args):