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.2Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
62803a4a1b
commit
a45af032f4
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue