fix broken f-string formatting and broken python make edits call

This commit is contained in:
Serhii Maltsev 2025-02-11 12:41:05 +01:00
parent 2a250720a6
commit 8dc1f6b039
2 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,7 @@ build:
cd $(cf_source_dir) && ./mach build $(_ARGS) cd $(cf_source_dir) && ./mach build $(_ARGS)
edits: edits:
python ./scripts/developer.py $(version) $(release) python3 ./scripts/developer.py $(version) $(release)
check-arch: check-arch:
@if ! echo "x86_64 i686 arm64" | grep -qw "$(arch)"; then \ @if ! echo "x86_64 i686 arm64" | grep -qw "$(arch)"; then \

View file

@ -208,7 +208,7 @@ def handle_choice(choice):
'\n'.join( '\n'.join(
sorted( sorted(
( (
f'{v}\t{k[len("../patches/"):-len('.patch')]}' f'{v}\t{k[len("../patches/"):-len(".patch")]}'
for k, v in apply_dict.items() for k, v in apply_dict.items()
), ),
reverse=True, reverse=True,