forked from Mirror/pmbootstrap
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:
parent
9e2bbf80e0
commit
ef594ddf24
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue