Skip to content

Commit

Permalink
Fix formatted string with missing formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
dosaboy committed Aug 5, 2024
1 parent f535fa9 commit 42f9feb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hotsos/core/root_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 42f9feb

Please sign in to comment.