From 7dc67fbafebf23b7cdbe49ee9fc5a6c327ce4a56 Mon Sep 17 00:00:00 2001 From: Sora Date: Sat, 11 Nov 2023 22:11:24 +0100 Subject: [PATCH] =?UTF-8?q?still=20testing=C2=B2=C2=B2=C2=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 2a21473..25d00fd 100644 --- a/main.py +++ b/main.py @@ -84,7 +84,7 @@ def yaml_to_services_list(filepath: str) -> dict|None: :param filepath: str :return: list|None ''' - + print(f"sorting services from {filepath}") serviceslist = dict() if not os.path.isfile(filepath): @@ -106,6 +106,7 @@ def yaml_to_services_list(filepath: str) -> dict|None: # on liste les services et ceux dont ils dépendent for servicename in ycontent["services"]: + print(f"appending {servicename}") mustbefore = [] if "depends_on" in ycontent["services"]: for dependance in ycontent["services"]["depends_on"]: