lib.CmdBuild.add_dep_tree(): Fix broken f-string

log() uses a regular string instead of an f-string, fix that.

Assisted-by: unsloth/Qwen3.6-35B-A3B-GGUF:IQ4_NL with pi.dev v0.80.2
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2026-07-01 16:03:39 +02:00
commit a45af032f4
Signed by: Jan Lindemann
GPG key ID: 3750640C9E25DD61

View file

@ -112,7 +112,7 @@ class CmdBuild(Cmd): # export
return ret
def add_dep_tree(cur, prereq_types, tree, all_deps):
log(DEBUG, 'Adding deps "{" ".join(prereq_types)}" of module {cur)')
log(DEBUG, f'Adding deps "{" ".join(prereq_types)}" of module {cur}')
if cur in all_deps:
log(DEBUG, 'Already handled module "{cur}"')
return 0