Skip to content

Commit

Permalink
Merge pull request #251 from itsayellow/fix_logging
Browse files Browse the repository at this point in the history
Fix bugs in logging.info statements.
  • Loading branch information
itsayellow authored Oct 23, 2019
2 parents e835671 + b46956b commit 7fa6309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipx/SharedLibs.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ def is_valid(self):
def upgrade(self, pip_args: List[str], verbose: bool = False):
# Don't try to upgrade multiple times per run
if self.has_been_updated_this_run:
logging.info("Already upgraded libraries in", self.root)
logging.info(f"Already upgraded libraries in {self.root}")
return
logging.info("Upgrading shared libraries in", self.root)
logging.info(f"Upgrading shared libraries in {self.root}")

ignored_args = ["--editable"]
_pip_args = [arg for arg in pip_args if arg not in ignored_args]
Expand Down

0 comments on commit 7fa6309

Please sign in to comment.