From ee70f5397186d63bafcbf80b61280e929a9377b8 Mon Sep 17 00:00:00 2001 From: Phil Owen <19691521+PhillipsOwen@users.noreply.github.com> Date: Wed, 23 Oct 2024 11:15:22 -0400 Subject: [PATCH] tidying up the exception text --- src/common/rule_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/rule_utils.py b/src/common/rule_utils.py index 720dbba..ef7408b 100644 --- a/src/common/rule_utils.py +++ b/src/common/rule_utils.py @@ -278,7 +278,7 @@ def remove_file(self, rule: Rule, opt_name: str = None) -> bool: ret_val = True except Exception: - self.logger.exception('Error: General exception detected during a directory removal.') + self.logger.exception('Error: General exception detected during a file removal.') # return to the caller return ret_val