From 085715236f62eaa087522a270d3f4beec6d5b79c Mon Sep 17 00:00:00 2001 From: BigfootACA Date: Tue, 21 May 2024 11:20:59 +0800 Subject: [PATCH] builder: build: filesystem.py: fix debug log print Signed-off-by: BigfootACA --- builder/build/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/build/filesystem.py b/builder/build/filesystem.py index 3a12888..0b0834b 100644 --- a/builder/build/filesystem.py +++ b/builder/build/filesystem.py @@ -114,7 +114,7 @@ def add_file(ctx: ArchBuilderContext, file: dict): content: str = file["content"] log.debug( "write to %s with %s", - (real, content.strip()) + real, content.strip() ) f.write(content.encode(encode)) log.debug(f"chmod file {real} to {mode:04o}")