From f92c71683f2a207986f4d1ede70dc48924fb214a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Mon, 21 Jan 2019 09:11:35 +0100 Subject: [PATCH] orchestrator: Add missing function arguments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- pungi_utils/orchestrator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi_utils/orchestrator.py b/pungi_utils/orchestrator.py index 3b8b26e8..d18019de 100644 --- a/pungi_utils/orchestrator.py +++ b/pungi_utils/orchestrator.py @@ -510,7 +510,7 @@ def run(work_dir, main_config_file, args): parts[section] = ComposePart.from_config(parser, section, config_dir) if hasattr(args, "part"): - setup_for_restart() + setup_for_restart(global_config, parts, args.part) return run_all(global_config, parts)