From 1015d6e0004e41c119988981d6f0c95ba7fe7f45 Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Thu, 24 Sep 2020 03:57:45 -0400 Subject: [PATCH] Fix capitalization of "Health status" in rip log This fixes a regression from move to ruamel.yaml where all other fields in rip log have second word lowercased, except for "Health Status". This changes it to make it inline with all other fields again. Signed-off-by: Matthew Peveler --- whipper/result/logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whipper/result/logger.py b/whipper/result/logger.py index 31b7210..459a32f 100644 --- a/whipper/result/logger.py +++ b/whipper/result/logger.py @@ -141,7 +141,7 @@ class WhipperLogger(result.Logger): message = "There were errors" else: message = "No errors occurred" - data["Health Status"] = message + data["Health status"] = message data["EOF"] = "End of status report" riplog["Conclusive status report"] = data