pmb.build.other: Fix broken f-string (MR 2525)

I'm guessing this was meant to be an f-string given that it uses the
formatting syntax for those.
This commit is contained in:
Newbyte 2025-01-07 23:24:26 +01:00 committed by Oliver Smith
parent 3f9f1c96c1
commit 752c1df039
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -105,7 +105,7 @@ def get_status(arch: Arch | None, apkbuild: Apkbuild) -> BuildStatus:
if arch and not pmb.helpers.pmaports.check_arches(apkbuild["arch"], arch): if arch and not pmb.helpers.pmaports.check_arches(apkbuild["arch"], arch):
logging.verbose( logging.verbose(
f"{package}: build is not necessary, because pmaport" f"{package}: build is not necessary, because pmaport"
" can't be built for {arch}. Using Alpine's binary" f" can't be built for {arch}. Using Alpine's binary"
" package." " package."
) )
return BuildStatus.CANT_BUILD return BuildStatus.CANT_BUILD