From 42f9feb2fef9afe7959fabec56574a96a6a14843 Mon Sep 17 00:00:00 2001 From: Edward Hope-Morley Date: Mon, 5 Aug 2024 16:53:19 +0100 Subject: [PATCH] Fix formatted string with missing formatter --- hotsos/core/root_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hotsos/core/root_manager.py b/hotsos/core/root_manager.py index cd0253391..d66fe89d9 100644 --- a/hotsos/core/root_manager.py +++ b/hotsos/core/root_manager.py @@ -79,7 +79,7 @@ def data_root(self): target = os.path.join(self.tmpdir, rootdir) if not os.path.exists(target): sys.stdout.write(f"INFO: extracting sosreport {path} to " - "{target}\n") + f"{target}\n") try: tar.extractall(self.tmpdir) # We really do want to catch all here since we don't care