From ee9368e17b184f1465fe742575d12261ea97ebbe Mon Sep 17 00:00:00 2001 From: Xiangce Liu Date: Tue, 16 Jul 2024 10:13:27 +0800 Subject: [PATCH] fix the typo in the warnning message Signed-off-by: Xiangce Liu --- insights/client/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/insights/client/config.py b/insights/client/config.py index 883e390dc..1cedf31d8 100644 --- a/insights/client/config.py +++ b/insights/client/config.py @@ -739,7 +739,7 @@ def _validate_options(self): sys.stdout.write('WARNING: Obfuscation reports will be created alongside the output directory.\n') if self.core_collect is False: if self._print_errors: - sys.stdout.write('WARNING: "core_collect=False" is not longer supported. "core_collect=True" will be used.\n') + sys.stdout.write('WARNING: "core_collect=False" is no longer supported. "core_collect=True" will be used.\n') if self.output_file: if os.path.exists(self.output_file): raise ValueError('File %s already exists.' % self.output_file)