pmb/commands/pull: fix path error with f-string (MR 2252)

Fix for:
  TypeError: can only concatenate str (not "PosixPath") to str
This commit is contained in:
Oliver Smith 2024-06-20 20:40:51 +02:00
parent 9e2bbf80e0
commit ef594ddf24
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -33,6 +33,6 @@ class Pull(commands.Command):
logging.info("")
logging.info("Fix and try again:")
for name_repo in failed:
logging.info("* " + pmb.helpers.git.get_path(name_repo))
logging.info(f"* {pmb.helpers.git.get_path(name_repo)}")
logging.info("---")
return False