From 4884ba41c46f658d223b6d14b831c031c848a512 Mon Sep 17 00:00:00 2001 From: jaydee Date: Wed, 17 Dec 2025 00:07:18 +0100 Subject: [PATCH] build --- port.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/port.py b/port.py index 9ed45aa..b23915b 100644 --- a/port.py +++ b/port.py @@ -978,11 +978,11 @@ class Portainer: else: self.args.update = True if "__ALL__" in service_ids: - service_ids = [s[0] for s in service_tuples if s[0] != "__ALL__"] + service_ids = [s[0] for s in service_tuples if s[0] != "__ALL__" and s[0] != "__ONLY_CHECK__"] print(service_ids) elif self.args.service_id == "all": - service_ids = [s[0] for s in service_tuples if s[0] != "__ALL__"] + service_ids = [s[0] for s in service_tuples if s[0] != "__ALL__" and s[0] != "__ONLY_CHECK__"] else: service_ids = [self.args.service_id]