1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-07 13:48:43 +02:00

Fix variable name in f-string in create_build_descr_data()

This commit is contained in:
2024-04-18 10:32:06 +02:00
parent 9aae67615b
commit b226aac330

View File

@@ -732,7 +732,7 @@ def create_build_descr_data(
cpio_data.add(key, value)
if prefer_pkgs:
print(f"Scanning the following dirs for local preferred packages: {', '.join(dirs)}", file=sys.stderr)
print(f"Scanning the following dirs for local preferred packages: {', '.join(prefer_pkgs)}", file=sys.stderr)
prefer_pkgs_result = get_prefer_pkgs(prefer_pkgs, arch, build_type, cpio_data)
else:
prefer_pkgs_result = {}