Skip to content

Commit

Permalink
Tweak log message
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Jan 8, 2025
1 parent 6c05314 commit 75334d9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions meta_package_manager/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,12 +624,12 @@ def available(self) -> bool:
<meta_package_manager.base.PackageManager.fresh>`.
"""
logging.debug(
f"{theme.invoked_command(self.id)} "
f"is deprecated: {self.deprecated}; "
f"is supported: {self.supported}; "
f"{theme.invoked_command(self.id)} is: "
f"deprecated? {self.deprecated}; "
f"supported? {self.supported}; "
f"found at: {highlight_cli_name(self.cli_path, self.cli_names)}; "
f"is executable: {self.executable}; "
f"is fresh: {self.fresh}.",
f"executable? {self.executable}; "
f"fresh? {self.fresh}.",
)
return bool(self.supported and self.cli_path and self.executable and self.fresh)

Expand Down

0 comments on commit 75334d9

Please sign in to comment.