From 05b62078493fa7e4ecb2600e0e8d31930096f547 Mon Sep 17 00:00:00 2001 From: Vivek Reddy Date: Tue, 2 Nov 2021 07:39:05 -0700 Subject: [PATCH] [hostcfgd] Missing comment added (#9113) Missing comment change which is supposed to arrive with #8861 is added here Signed-off-by: Vivek Reddy Karri --- src/sonic-host-services/scripts/hostcfgd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sonic-host-services/scripts/hostcfgd b/src/sonic-host-services/scripts/hostcfgd index 7d7dd8947b..3a3e31ca47 100755 --- a/src/sonic-host-services/scripts/hostcfgd +++ b/src/sonic-host-services/scripts/hostcfgd @@ -46,7 +46,7 @@ DEFAULT_SELECT_TIMEOUT = 1000 def safe_eval(val, default_value=False): - """ Safely evaluate the boolean expression, without raising an exception """ + """ Safely evaluate the expression, without raising an exception """ try: ret = ast.literal_eval(val) except ValueError: