From 414874c0948410b2b1154a5d86e3d8189fa2f070 Mon Sep 17 00:00:00 2001 From: Harry Chen Date: Sun, 3 Dec 2023 18:33:23 +0800 Subject: [PATCH] apt-sync: fix function invocation Signed-off-by: Harry Chen --- apt-sync.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apt-sync.py b/apt-sync.py index 176e4e7..93fbb13 100755 --- a/apt-sync.py +++ b/apt-sync.py @@ -340,8 +340,8 @@ def main(): lists = [l] * n_os return lists - component_lists = generate_list_for_oses(args.component) - arch_lists = generate_list_for_oses(args.arch) + component_lists = generate_list_for_oses(args.component, "component") + arch_lists = generate_list_for_oses(args.arch, "arch") args.working_dir.mkdir(parents=True, exist_ok=True) failed = []