From 0fec8f5f40763155f86281e3b64051f6f4523885 Mon Sep 17 00:00:00 2001 From: Maaike Date: Thu, 30 Jan 2025 16:41:35 +0100 Subject: [PATCH] fix --- wis2box-ctl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wis2box-ctl.py b/wis2box-ctl.py index e1c314a2..44bb7d4a 100755 --- a/wis2box-ctl.py +++ b/wis2box-ctl.py @@ -304,7 +304,7 @@ def update_images_yml() -> str: current_version = 'Undefined' # find currently used version of docker-compose.images-*.yml for file_ in os.listdir('.'): - if file_.startswith('docker-compose.images-') and file.endswith('.yml'): + if file_.startswith('docker-compose.images-') and file_.endswith('.yml'): current_version = file_.split('images-')[1].split('.yml')[0] if current_version == version: