mirror of
https://github.com/openSUSE/osc.git
synced 2025-09-07 05:38:43 +02:00
Fix a message in create_build_descr_data() by converting to a f-string
This commit is contained in:
@@ -732,7 +732,7 @@ def create_build_descr_data(
|
||||
cpio_data.add(key, value)
|
||||
|
||||
if prefer_pkgs:
|
||||
print("Scanning the following dirs for local preferred packages: {', '.join(dirs)}", file=sys.stderr)
|
||||
print(f"Scanning the following dirs for local preferred packages: {', '.join(dirs)}", file=sys.stderr)
|
||||
prefer_pkgs_result = get_prefer_pkgs(prefer_pkgs, arch, build_type, cpio_data)
|
||||
else:
|
||||
prefer_pkgs_result = {}
|
||||
|
Reference in New Issue
Block a user